Created
May 11, 2019 13:08
-
-
Save keith-kurak/9cf9ed4eec0c6b23369c95d58a71cf81 to your computer and use it in GitHub Desktop.
Manifest.json for PWA
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
| { | |
| "short_name": "A short name", | |
| "name": "A long name", | |
| "prefer_related_applications": false, | |
| "icons": [ | |
| { | |
| "src": "icon-192.png", | |
| "type": "image/png", | |
| "sizes": "192x192" | |
| }, | |
| { | |
| "src": "icon-512.png", | |
| "type": "image/png", | |
| "sizes": "512x512" | |
| } | |
| ], | |
| "start_url": "index.html", | |
| "background_color": "#3367D6", | |
| "display": "standalone", | |
| "scope": "/", | |
| "theme_color": "#3367D6" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment