summaryrefslogtreecommitdiff
path: root/public/static/manifest.json
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-05-03 20:43:46 +0200
committerDaniel Friesel <derf@finalrewind.org>2019-05-03 20:43:46 +0200
commit709919a9624ed4336e9e5ae382e29cd34c795a82 (patch)
tree5562aa8a08048666c162db008db9b69dc554d4c6 /public/static/manifest.json
parent9f3b80a859a8e54856dd283b635a4abfe377feb9 (diff)
Experimental PWA support (#13)
Diffstat (limited to 'public/static/manifest.json')
-rw-r--r--public/static/manifest.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/public/static/manifest.json b/public/static/manifest.json
new file mode 100644
index 0000000..7e856f2
--- /dev/null
+++ b/public/static/manifest.json
@@ -0,0 +1,34 @@
+{
+ "name": "travelynx",
+ "short_name": "travelynx",
+ "scope": "/",
+ "icons": [{
+ "src": "/static/icons/icon-128x128.png",
+ "sizes": "128x128",
+ "type": "image/png"
+ }, {
+ "src": "/static/icons/icon-144x144.png",
+ "sizes": "144x144",
+ "type": "image/png"
+ }, {
+ "src": "/static/icons/icon-152x152.png",
+ "sizes": "152x152",
+ "type": "image/png"
+ }, {
+ "src": "/static/icons/icon-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ }, {
+ "src": "/static/icons/icon-256x256.png",
+ "sizes": "256x256",
+ "type": "image/png"
+ }, {
+ "src": "/static/icons/icon-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }],
+ "start_url": "/",
+ "display": "standalone",
+ "background_color": "#ffffff",
+ "theme_color": "#673ab7"
+}