summaryrefslogtreecommitdiffstats
path: root/public/manifest.json
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-21 19:30:39 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-03-21 19:30:39 +0100
commitcc119f1cbb0b3bbd0c5453a5b9c5ce4c7f2a5df5 (patch)
treeb6bd9f6f94eda70ba99360524987de677893f5f7 /public/manifest.json
parentfeat(treewide): Commit MVP (diff)
downloadweb-client-cc119f1cbb0b3bbd0c5453a5b9c5ce4c7f2a5df5.zip
build(treewide): Provide a working `manifest.json` file
The previous one had no really working images.
Diffstat (limited to '')
-rw-r--r--public/manifest.json26
1 files changed, 22 insertions, 4 deletions
diff --git a/public/manifest.json b/public/manifest.json
index 5ea8b9d..1c89288 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,13 +1,31 @@
{
"name": "Rocie",
+ "short_name": "Rocie ",
"icons": [
{
- "src": "favicon.ico",
- "type": "image/png",
- "sizes": "512x512"
+ "src": "./favicon-1024.png",
+ "sizes": "1024x1024",
+ "type": "image/png"
+ }
+ {
+ "src": "./favicon-512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ {
+ "src": "./favicon-256.png",
+ "sizes": "256x256",
+ "type": "image/png"
+ }
+ {
+ "src": "./favicon-128.png",
+ "sizes": "128x128",
+ "type": "image/png"
}
],
- "start_url": "/",
+ "start_url": null,
+ "background_color": "#333131",
+ "theme_color": "#333131",
"display": "standalone",
"prefer_related_applications": false
}