From f2d9400e22a26897c5e425904a52be6d98cd2139 Mon Sep 17 00:00:00 2001 From: Guillim Date: Fri, 28 Nov 2025 11:23:11 +0100 Subject: [PATCH] increase chunk fro release (#16169) 1.12 --- 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 8c9d03d50c..cc787c77c5 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.1 * 1024 * 1024; // 6.1MB for main index chunk + const MAIN_CHUNK_SIZE_LIMIT = 6.5 * 1024 * 1024; // 6.5MB for main index chunk const OTHER_CHUNK_SIZE_LIMIT = 5 * 1024 * 1024; // 5MB for other chunks const checkers: Checkers = {