diff --git a/manifest.json b/manifest.json index 2aab3da07..6e78569cd 100644 --- a/manifest.json +++ b/manifest.json @@ -2,21 +2,20 @@ "name": "My App", "short_name": "My App", "description": "My App description", - "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" } - ] + ], + "start_url": "/", + "display": "standalone", + "theme_color": "#3f51b5", + "background_color": "#3f51b5" }