fix: raise PWA precache size limit to 3 MB

Main bundle grew past the default 2 MB workbox limit, breaking
Docker builds. Raise to 3 MB to unblock deployment.
This commit is contained in:
Jannis Braun
2026-03-22 02:28:15 +01:00
parent 1f3d10842d
commit 2fdf379cb2
+1
View File
@@ -30,6 +30,7 @@ export default defineConfig({
skipWaiting: true, skipWaiting: true,
clientsClaim: true, clientsClaim: true,
cleanupOutdatedCaches: true, cleanupOutdatedCaches: true,
maximumFileSizeToCacheInBytes: 3 * 1024 * 1024,
}, },
}), }),
], ],