Last active
October 10, 2025 17:19
-
-
Save jacobdalamb/b44e8a3c1e855b56f89826a1ccf20b70 to your computer and use it in GitHub Desktop.
Favicon 2025 https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="icon" href="/favicon.ico" sizes="32x32"> | |
| <link rel="icon" href="/icon.svg" type="image/svg+xml"> | |
| <link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 --> | |
| <link rel="manifest" href="/manifest.webmanifest"> <!-- PWA only --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "icons": [ | |
| { "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" }, | |
| { "src": "/icon-mask.png", "type": "image/png", "sizes": "512x512", "purpose": "maskable" }, | |
| { "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment