Skip to content

Instantly share code, notes, and snippets.

@milk1000cc
Last active January 7, 2025 01:10
Show Gist options
  • Save milk1000cc/514f3ad58b46ec627264972b6fa572de to your computer and use it in GitHub Desktop.
Save milk1000cc/514f3ad58b46ec627264972b6fa572de to your computer and use it in GitHub Desktop.
A simple web application manifest
{
"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