diff options
author | eug-vs <eug-vs@keemail.me> | 2020-08-24 21:42:45 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-08-24 21:42:45 +0300 |
commit | 7d3554d541c6c713b64be98e2857e58b24d389b4 (patch) | |
tree | 01fd6cc5d9e53fd896cc339bf7f7461c3e9b46a2 /public/manifest.json | |
parent | 27ce051352a3d8aef51aeee5d93e4b5c1773cc4f (diff) | |
download | which-ui-7d3554d541c6c713b64be98e2857e58b24d389b4.tar.gz |
feat: add manifest and pwa properties to index
Diffstat (limited to 'public/manifest.json')
-rw-r--r-- | public/manifest.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..faa47a3 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,19 @@ +{ + "short_name": "Which", + "name": "Which", + "icons": [ + { + "src": "which-logo-512.png", + "type": "image/png", + "sizes": "512x512" + }, + { + "src": "which-logo-64.png", + "type": "image/png", + "sizes": "64x64" + } + ], + "display": "standalone", + "theme_color": "#00796b", + "background_color": "#ffffff" +} |