From e94b0e811aba3c6f28a1733877ddfce72b4b4481 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 11 Feb 2026 19:17:43 +0000 Subject: [PATCH] Adjust sizes on manifest icons --- src/routes/manifest.webmanifest/+server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/manifest.webmanifest/+server.ts b/src/routes/manifest.webmanifest/+server.ts index 02ffe6e..350a9ce 100644 --- a/src/routes/manifest.webmanifest/+server.ts +++ b/src/routes/manifest.webmanifest/+server.ts @@ -17,13 +17,13 @@ export const GET: RequestHandler = ({ url }) => { icons: [ { src: logo, - sizes: 'any', + sizes: '48x48 72x72 96x96 128x128 256x256 512x512 any', type: 'image/svg+xml', purpose: 'any' }, { src: maskableLogo, - sizes: 'any', + sizes: '48x48 72x72 96x96 128x128 256x256 512x512 any', type: 'image/svg+xml', purpose: 'maskable' },