Changing favicon for plasmic hosted sites.

Can plasmic please support changing favicon for plasmic hosted sites? Im not a dev so I cant host my site externally and therefore cant change favicon…

1 Like

You can add a custom HTML component and put this Javascript in it to change your favicon

<script>
var link = document.querySelector("link[rel~='icon']");
if (!link) {
    link = document.createElement('link');
    link.rel = 'icon';
    document.head.appendChild(link);
}
link.href = '<https://stackoverflow.com/favicon.ico>';
</script>

OMG i only saw this just now. Thank you @attainable_catshark true legend!