From 7d3554d541c6c713b64be98e2857e58b24d389b4 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Mon, 24 Aug 2020 21:42:45 +0300 Subject: feat: add manifest and pwa properties to index --- public/manifest.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 public/manifest.json (limited to 'public/manifest.json') 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" +} -- cgit v1.2.3 From 2f38908f784512b725c4b57602313e887e791bc0 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Mon, 24 Aug 2020 21:53:30 +0300 Subject: feat: add maskable androind icon --- public/manifest.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'public/manifest.json') diff --git a/public/manifest.json b/public/manifest.json index faa47a3..aed7ee3 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -3,14 +3,10 @@ "name": "Which", "icons": [ { - "src": "which-logo-512.png", + "src": "which-logo-144.png", "type": "image/png", - "sizes": "512x512" - }, - { - "src": "which-logo-64.png", - "type": "image/png", - "sizes": "64x64" + "sizes": "144x144", + "purpose": "maskable" } ], "display": "standalone", -- cgit v1.2.3