I have a Wiki JS container running in Azure Web App (followed this doc: https://docs.requarks.io/install/azurewebapp), and I want to change the favicon. I read that maybe I can overwrite the favicon mount in the Azure Web App configuration, but unfortunately that's not working for now. Here's what I did so far:
Azure Web App - Path mappings
Azure Storage - Fileshare
Wiki JS - Uploaded favicon
I found an easy workaround until this feature gets implemented in V3:
<YOUR_LINK>
with the full link to your favicon, then click Apply.<script>
document.querySelectorAll('link[rel=icon],link[rel=apple-touch-icon],link[rel=mask-icon],meta[name=msapplication-TileImage]').forEach(function(node) {
node.setAttribute(node.hasAttribute("content")?'content':'href', '<YOUR_LINK>');
});
</script>