summaryrefslogtreecommitdiff
path: root/ui/static/manifest.json
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-11-05 22:22:22 -0500
committerKit La Touche <kit@transneptune.net>2024-11-05 22:22:22 -0500
commitc68ebc39096d93867058f011b4e6313f53128819 (patch)
tree41eb253d6d9d81dcb6c7f244ab4c65a6023b87e4 /ui/static/manifest.json
parent2f67205b83009c874f4254a4789b1945668b3056 (diff)
Start to make this a PWA
Diffstat (limited to 'ui/static/manifest.json')
-rw-r--r--ui/static/manifest.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/ui/static/manifest.json b/ui/static/manifest.json
new file mode 100644
index 0000000..2d4cf39
--- /dev/null
+++ b/ui/static/manifest.json
@@ -0,0 +1,43 @@
+{
+ "name": "Pilcrow",
+ "short_name": "Pilcrow",
+ "start_url": "index.html",
+ "display": "standalone",
+ "background_color": "#fdfdfd",
+ "theme_color": "#db4938",
+ "orientation": "portrait-primary",
+ "icons": [
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "72x72"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "96x96"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png","sizes": "128x128"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "144x144"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "152x152"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "192x192"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "384x384"
+ },
+ {
+ "src": "/favicon.png",
+ "type": "image/png", "sizes": "512x512"
+ }
+ ]
+}