Last active
January 7, 2025 01:10
-
-
Save milk1000cc/514f3ad58b46ec627264972b6fa572de to your computer and use it in GitHub Desktop.
A simple web application manifest
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
{ | |
"name": "<app name>", | |
"display": "browser", | |
"icons": [ | |
{ | |
"src": "/assets/icon-<digest>.png", | |
"type": "image/png", | |
"sizes": "192x192" | |
}, | |
{ | |
"src": "/assets/icon-maskable-<digest>.png", | |
"type": "image/png", | |
"sizes": "192x192", | |
"purpose": "maskable" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment