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…
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>