Created
January 1, 2019 18:45
-
-
Save jsanta/0be35b6f8ad1e058cf570cef8cae8264 to your computer and use it in GitHub Desktop.
Sample PWA manifest.json file
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": "Ionic", | |
| "short_name": "Ionic", | |
| "start_url": "index.html", | |
| "display": "standalone", | |
| "icons": [{ | |
| "src": "assets/imgs/logo-512x512.png", | |
| "sizes": "512x512", | |
| "type": "image/png" | |
| }, | |
| { | |
| "src": "assets/imgs/logo-192x192.png", | |
| "sizes": "192x192", | |
| "type": "image/png" | |
| }], | |
| "background_color": "#4e8ef7", | |
| "theme_color": "#4e8ef7" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment