From 4281a71f40af4bed0266b2262c550c45e78a708c Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Mon, 15 Dec 2025 15:25:22 +0100 Subject: [PATCH] Increase bundle size to 6.9MB (#16568) Likely a missing lazy load in: https://github.com/twentyhq/twenty/pull/16437 Let's unblock and fix separately --- packages/twenty-front/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/vite.config.ts b/packages/twenty-front/vite.config.ts index cc787c77c5..6a3427d4fb 100644 --- a/packages/twenty-front/vite.config.ts +++ b/packages/twenty-front/vite.config.ts @@ -45,7 +45,7 @@ export default defineConfig(({ command, mode }) => { // Please don't increase this limit for main index chunk // If it gets too big then find modules in the code base // that can be loaded lazily, there are more! - const MAIN_CHUNK_SIZE_LIMIT = 6.5 * 1024 * 1024; // 6.5MB for main index chunk + const MAIN_CHUNK_SIZE_LIMIT = 6.9 * 1024 * 1024; // 6.5MB for main index chunk const OTHER_CHUNK_SIZE_LIMIT = 5 * 1024 * 1024; // 5MB for other chunks const checkers: Checkers = {