Graphite/frontend/public/site.webmanifest
Thomas Steiner 1f2dfcf372
Fix frontend webmanifest so installing a PWA isn't broken (#1450)
* Add `"start_url"` and `"id"` to manifest

* Change background color and add screenshot

* Remove screenshot again
2023-11-06 01:35:01 -08:00

21 lines
481 B
JSON

{
"name": "Graphite",
"short_name": "Graphite",
"start_url": "/",
"id": "/",
"icons": [
{
"src": "./android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#222222",
"display": "standalone"
}