How to load a favicon with Meteor

拟墨画扇 提交于 2019-11-27 13:42:58

问题


I'm trying to figure out how to add a favicon to my meteor app. Per the docs I should put it in the /public directory, but there isn't really much more info than that. I put my favicon.ico file there and referenced it in the header of my html file, but the browser doesn't load it. If I open up the dev tools on chrome though, it shows the file loading (i.e., go to localhost:3000/favicon.ico). Anyone have any suggestions on what I might be missing?


回答1:


It should work. Probably either an issue with the path or caching on localhost.

Here's how the favicon should be linked:

<link rel="icon" sizes="16x16 32x32" href="/favicon.ico?v=2">

(Note: the / in the beginning; its important!)




回答2:


Not sure what your path is like. Everything in the public folder is slapped together and accessible at root, so perhaps try /favicon.png.




回答3:


I added the favicon.ico in the /public/ directory of my meteor project and it showed up for me!

didn't have to add any lines of code

also if its caching issue maybe rename the favicon.ico to favicon2.ico



来源:https://stackoverflow.com/questions/20054788/how-to-load-a-favicon-with-meteor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!