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
there is currently no option for SVG favicons
SVG favicons have many benefits such a small file size and support for CSS media queries such as prefers-color-scheme
pwa: { iconPaths: { faviconSVG: 'img/icons/favicon.svg', favicon32: 'img/icons/favicon-32x32.png', favicon16: 'img/icons/favicon-16x16.png', } }
wich would generate
<link rel="icon" type="image/svg xml" href="/img/icons/favicon.svg"> <link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png">
The text was updated successfully, but these errors were encountered:
this is similar to #5041
Sorry, something went wrong.
I would definitely use this. It allows Dark Mode Favicons, a super cool feature.
No branches or pull requests
What problem does this feature solve?
there is currently no option for SVG favicons
SVG favicons have many benefits such a small file size and support for CSS media queries such as prefers-color-scheme
What does the proposed API look like?
wich would generate
The text was updated successfully, but these errors were encountered: