We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed there are the following files in the hell/favicon folder:
hell/favicon
favicon-16x16.png
favicon-32x32.png
favicon.ico
It looks like the favicon.ico already has the 16x16, 32x32, and 48x48 sizes incorporated:
The two PNGs are referenced using the following in base.njk:
base.njk
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
I'd suggest the following:
rel="icon"
The browser will do the rest.
Outcomes:
How about that? :D
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed there are the following files in the
hell/favicon
folder:favicon-16x16.png
favicon-32x32.png
favicon.ico
It looks like the
favicon.ico
already has the 16x16, 32x32, and 48x48 sizes incorporated:The two PNGs are referenced using the following in
base.njk
:I'd suggest the following:
rel="icon"
references to the PNGsfavicon.ico
to your Netlify config. (ICO files are like BMPs, they compress nicely)The browser will do the rest.
Outcomes:
How about that? :D
The text was updated successfully, but these errors were encountered: