Skip to content

Commit

Permalink
fix(v2): fix manifest to support baseUrl (#3438)
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber authored Sep 11, 2020
1 parent 7ffe939 commit c0ce83f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions website/static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,46 @@
"theme_color": "#2196f3",
"background_color": "#424242",
"display": "standalone",
"scope": "/",
"start_url": "/",
"scope": "",
"start_url": "",
"icons": [
{
"src": "/img/icons/icon-72x72.png",
"src": "img/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "/img/icons/icon-96x96.png",
"src": "img/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "/img/icons/icon-128x128.png",
"src": "img/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "/img/icons/icon-144x144.png",
"src": "img/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "/img/icons/icon-152x152.png",
"src": "img/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "/img/icons/icon-192x192.png",
"src": "img/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/img/icons/icon-384x384.png",
"src": "img/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/img/icons/icon-512x512.png",
"src": "img/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
Expand Down

0 comments on commit c0ce83f

Please sign in to comment.