markhorn-dev / astro-nano

Astro Nano is a static, minimalist, lightweight, lightning fast portfolio and blog.
https://astro-nano-demo.vercel.app
145 stars 51 forks source link

Updating tab icon #3

Closed GeraltO18 closed 3 weeks ago

GeraltO18 commented 3 weeks ago

Hi @mark-horn, I was trying to update the tab-icon in the project but even after replacing all the favicon. please let me know how to do this, or if i am missing something. Thanks.

markhorn-dev commented 3 weeks ago

If you are having issues, try deleting x-icon, and make sure the your new icons are named like so:


<!-- Head.astro -->
<link rel="icon" type="image/svg+xml" href="/favicon-dark.svg" media="(prefers-color-scheme: dark)">
<link rel="icon" type="image/svg+xml" href="/favicon-light.svg" media="(prefers-color-scheme: light)">
<!-- Delete the next line -->
<!-- <link rel="icon" type="image/x-icon" href="/favicon-light.svg"> -->```

I think that should work. Apart from that, you might need to clear the browser cache.
GeraltO18 commented 3 weeks ago

Worked, Thank a lot!