Skip to content

Commit

Permalink
fix: update manifest fields and icons
Browse files Browse the repository at this point in the history
  • Loading branch information
raulghm committed May 25, 2019
1 parent bffc751 commit ee54496
Showing 1 changed file with 38 additions and 7 deletions.
45 changes: 38 additions & 7 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,51 @@
{
"name": "GrowlerApp",
"short_name": "GrowlerApp",
"theme_color": "#ff6666",
"background_color": "#ff6666",
"display": "standalone",
"scope": "/",
"start_url": "/",
"icons": [
{
"src": "/img/icons/android-chrome-192x192.png",
"src": "/img/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "/img/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "/img/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "/img/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "/img/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "/img/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/img/icons/android-chrome-512x512.png",
"src": "/img/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/img/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "/index.html",
"display": "standalone",
"background_color": "#ff6666",
"theme_color": "#ff6666"
]
}

0 comments on commit ee54496

Please sign in to comment.