Change favicon

1
How can i replace the the favoicon in Mendix In already mutate the files index.html , index-rtl.htm , etc with a extra line <link type="image/x-icon" href="ui/theme-mendix/images/layout/favicon.ico" rel="shortcut icon"> but it still showing the mendix favoicon. The favoicon is found but not showing.
asked
2 answers
2

Ran into this, found what worked best was to not call your custom favicon "favicon.ico" but give it a custom file name. The default mendix favicon is named favicon.ico to prevent conflict I tried changing the name and it worked.

<link type="image/x-icon" href="ui/theme-mendix/images/layout/custom.ico" rel="shortcut icon">

Hope that helps.

answered
1

A workaround is to replace the favoicon in the webfolder

answered