How to load a favicon with Meteor

前端 未结 3 2035
予麋鹿
予麋鹿 2020-12-14 17:24

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 t

相关标签:
3条回答
  • 2020-12-14 17:52

    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!)

    0 讨论(0)
  • 2020-12-14 18:02

    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

    0 讨论(0)
  • 2020-12-14 18:05

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

    0 讨论(0)
提交回复
热议问题