From e042601826822a96796f297b97654283f505baa3 Mon Sep 17 00:00:00 2001 From: JayJay1024 Date: Thu, 26 Sep 2024 00:21:09 +0800 Subject: [PATCH] Increase maximumFileSizeToCacheInBytes --- apps/web/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/vite.config.ts b/apps/web/vite.config.ts index 40ef9955..51da3aa1 100644 --- a/apps/web/vite.config.ts +++ b/apps/web/vite.config.ts @@ -30,6 +30,7 @@ export default defineConfig({ globPatterns: ["**/*.{js,css,html,svg,png,ico}"], cleanupOutdatedCaches: true, clientsClaim: true, + maximumFileSizeToCacheInBytes: 3145728, // 3MB }, devOptions: { enabled: false,