From dd2bd86d8269ea3af049d5881f47a817db1e2072 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Sun, 10 Jul 2022 22:44:19 +0200 Subject: [PATCH] fix: attempt to fix Chrome warning Error while trying to use the following icon from the Manifest: https://hex.wincent.com/favicon.ico (Resource size is not correct - typo in the Manifest?) --- public/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index be607e4..ee46697 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -4,8 +4,8 @@ "icons": [ { "src": "favicon.ico", - "sizes": "192x192", - "type": "image/png" + "sizes": "64x64", + "type": "image/x-icon" } ], "start_url": "./index.html", -- 2.40.1