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
This commit is contained in:
Thomas Steiner 2023-11-06 10:35:01 +01:00 committed by GitHub
parent 605c0de392
commit 1f2dfcf372
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
{
"name": "Graphite",
"short_name": "Graphite",
"start_url": "/",
"id": "/",
"icons": [
{
"src": "./android-chrome-192x192.png",
@ -14,6 +16,6 @@
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"background_color": "#222222",
"display": "standalone"
}