From 2e412af4dd34fb14266429aa1f50e41aa61ef124 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 13 Apr 2026 16:20:19 +0000 Subject: [PATCH] fix: suppress Vite chunk size warning that clutters test output The JS bundle is ~1MB which is fine for an embedded admin UI. Raise the warning limit to 1100KB. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 4c7aff24..7e52bd4e 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -60,6 +60,7 @@ export default defineConfig(() => { build: { outDir: "dist", emptyOutDir: true, + chunkSizeWarningLimit: 1100, }, }; });