From 6a8a791959808e61c74ed905f292e93206bb90f8 Mon Sep 17 00:00:00 2001 From: Nathan Lamy Date: Tue, 19 Aug 2025 23:30:22 +0200 Subject: [PATCH] chore: fix last pwa error --- pwa.config.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pwa.config.ts b/pwa.config.ts index 3944800..6c4a887 100644 --- a/pwa.config.ts +++ b/pwa.config.ts @@ -4,10 +4,7 @@ export default { }, includeAssets: [ "favicon.ico", - "favicon-96x96.png", - "web-app-manifest-192x192.png", - "web-app-manifest-512x512.png", - "apple-touch-icon.png", + "*.png", ], registerType: "autoUpdate", manifest: { @@ -33,4 +30,5 @@ export default { ], }, injectRegister: "script", + strategies: "generateSW", };