How to update favicon?
I found https://github.com/wasp-lang/wasp/discussions/934 on this topic. However, I am missing something.
I have the following in my app.head section:
I have added my logo as favicon.ico and as image.png in the static folder.
I have also deleted the Wasp logo from the folder.
However, it is still pulling in the Wasp logo for the favicon from somewhere.. I can not figure out where / why...
I have the following in my app.head section:
head: [
"<meta property='og:type' content='website' />",
"<meta property='og:image' content='src/client/static/image.png' />",
"<link rel='icon' type='image/x-icon' href='src/static/favicon.ico'>",
],I have added my logo as favicon.ico and as image.png in the static folder.
I have also deleted the Wasp logo from the folder.
However, it is still pulling in the Wasp logo for the favicon from somewhere.. I can not figure out where / why...
GitHub
Right now default favicon is Wasp logo, how can I change it?