From 6a821f3b76cd9b3c5fb034e2224cfe44b2d90d9b Mon Sep 17 00:00:00 2001 From: Thomas Steiner Date: Tue, 3 Oct 2023 11:07:02 +0200 Subject: [PATCH] fix: Icon size in manifest (#7073) --- public/manifest.json | 2 +- vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index 64f7e5ba..374d426e 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -11,7 +11,7 @@ { "src": "apple-touch-icon.png", "type": "image/png", - "sizes": "256x256" + "sizes": "180x180" } ], "start_url": "/", diff --git a/vite.config.ts b/vite.config.ts index 870e21ae..8d452888 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -111,7 +111,7 @@ export default defineConfig({ { src: "apple-touch-icon.png", type: "image/png", - sizes: "256x256", + sizes: "180x180", }, ], start_url: "/",