From 5d099ce78a9310633f70c254d66e5215044a410e Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Wed, 26 Jun 2019 12:46:09 -0500 Subject: [PATCH] reworked manifest file --- app/{ => images}/icon.png | Bin app/index.html | 4 ++-- app/manifest.json | 16 ++++++++++++++++ app/site.webmanifest | 8 -------- 4 files changed, 18 insertions(+), 10 deletions(-) rename app/{ => images}/icon.png (100%) create mode 100644 app/manifest.json delete mode 100644 app/site.webmanifest diff --git a/app/icon.png b/app/images/icon.png similarity index 100% rename from app/icon.png rename to app/images/icon.png diff --git a/app/index.html b/app/index.html index cff681f..ce9d691 100644 --- a/app/index.html +++ b/app/index.html @@ -7,8 +7,8 @@ - - + + diff --git a/app/manifest.json b/app/manifest.json new file mode 100644 index 0000000..38b6d71 --- /dev/null +++ b/app/manifest.json @@ -0,0 +1,16 @@ +{ + "name": "RiotJS Starter Seed", + "short_name": "RiotJS Starter", + "lang": "en-US", + "orientation": "landscape-primary", + "start_url": ".", + "display": "standalone", + "background_color": "#101010", + "theme_color": "#BABABA", + "description": "riotjs spa starter seed", + "icons": [{ + "src": "images/logo.png", + "sizes": "192x192", + "type": "image/png" + }] +} diff --git a/app/site.webmanifest b/app/site.webmanifest deleted file mode 100644 index a539a68..0000000 --- a/app/site.webmanifest +++ /dev/null @@ -1,8 +0,0 @@ -{ - "icons": [{ - "src": "icon.png", - "sizes": "192x192", - "type": "image/png" - }], - "start_url": "/" -}