From 709919a9624ed4336e9e5ae382e29cd34c795a82 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 3 May 2019 20:43:46 +0200 Subject: Experimental PWA support (#13) --- public/static/manifest.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 public/static/manifest.json (limited to 'public/static/manifest.json') 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" +} -- cgit v1.2.3