-
I generally finger print all my assets with a hash, ideally I'd like to to do this for the favicon. But, I cannot find where Remix is rendering the favicon tag. I assume it's somewhere in the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Remix isn't rendering a favicon, so the browser is defaulting to /favicon.ico (and it finds the one provided in public/) You can override this by providing your own favicon using the |
Beta Was this translation helpful? Give feedback.
-
import favicon from '~/assets/favicon.png'
export const links: LinksFunction = () => [
{ rel: 'icon', type: 'image/png', href: favicon }
] |
Beta Was this translation helpful? Give feedback.
https://www.w3.org/2005/10/howto-favicon