Last active
March 19, 2018 16:42
-
-
Save jacky810124/05647304222d5800369fe914a9066fe5 to your computer and use it in GitHub Desktop.
PWA Day02 Manifest
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": "order drink", | |
"name": "好想訂飲料", | |
"description": "好想訂飲料 - 快找大家訂飲料吧!", | |
"theme_color": "#FFFFFF", | |
"background_color": "#FFFFFF", | |
"display": "standalone", | |
"orientation": "portrait", | |
"icons": [ | |
{ | |
"src": "/icons/android-icon-48x48.png", | |
"type": "image/png", | |
"sizes": "48x48" | |
}, | |
{ | |
"src": "/icons/android-icon-96x96.png", | |
"type": "image/png", | |
"sizes": "96x96" | |
}, | |
{ | |
"src": "/icons/android-icon-144x144.png", | |
"type": "image/png", | |
"sizes": "144x144" | |
}, | |
{ | |
"src": "/icons/android-icon-192x192.png", | |
"type": "image/png", | |
"sizes": "192x192" | |
} | |
], | |
"start_url": "/" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment