Last active
August 6, 2017 12:23
-
-
Save ozknozsrt/39d43b0b271d288b6b86ccbe0a09d603 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
{ | |
"name": "PWA Title", | |
"short_name": "PWA Short Name", | |
"icons": [ | |
{ | |
"src": "pwa.png", | |
"type": "image/PNG", | |
"sizes": "144x144" | |
} | |
], | |
"start_url": "/", | |
"display": "standalone", | |
"background_color": "#ffffff", | |
"theme_color": "#282828" | |
} | |
--------------- | |
<link rel="manifest" href="manifest.json"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment