Merge pull request #1049 from FluorescentHallucinogen/patch-2

Add scope and use utm_source in manifest.json
This commit is contained in:
Keanu Lee
2017-09-22 15:32:21 -07:00
committed by GitHub

View File

@@ -2,18 +2,19 @@
"name": "My App",
"short_name": "My App",
"description": "My App description",
"start_url": "./?homescreen=1",
"start_url": "./?utm_source=web_app_manifest",
"scope": "./",
"display": "standalone",
"theme_color": "#3f51b5",
"background_color": "#3f51b5",
"icons": [
{
"src": "images/manifest/icon-192x192.png",
"src": "./images/manifest/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "images/manifest/icon-512x512.png",
"src": "./images/manifest/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}