Created
June 27, 2021 21:10
-
-
Save 100lvlmaster/3a7d37a400897114d5c64d88b81e4acc to your computer and use it in GitHub Desktop.
manifest.json
This file contains 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
{ | |
"short_name": "svelte-pwa", | |
"name": "svelte-test-pwa", | |
"start_url": "/", | |
"icons": [ | |
{ | |
"src": "logo_512.png", | |
"type": "image/png", | |
"sizes": "512x512" | |
} | |
], | |
"background_color": "#3367D6", | |
"display": "standalone", | |
"scope": "/", | |
"theme_color": "#3367D6", | |
"shortcuts": [ | |
{ | |
"name": "How's weather today?", | |
"short_name": "Today", | |
"description": "View weather information for today", | |
"url": "/today?source=pwa", | |
"icons": [{ "src": "/icons/logo_192.png", "sizes": "192x192" }] | |
}, | |
{ | |
"name": "How's weather tomorrow?", | |
"short_name": "Tomorrow", | |
"description": "View weather information for tomorrow", | |
"url": "/tomorrow?source=pwa", | |
"icons": [{ "src": "/icons/logo_192.png", "sizes": "192x192" }] | |
} | |
], | |
"description": "Lofi to lofi beats, while using the scratchpad to list down tasks and thoughts" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment