Skip to content

Commit 81e9a02

Browse files
Increase chunk limit (#14881)
As per title
1 parent c5cdf45 commit 81e9a02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/twenty-front/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default defineConfig(({ command, mode }) => {
4646
// Please don't increase this limit for main index chunk
4747
// If it gets too big then find modules in the code base
4848
// that can be loaded lazily, there are more!
49-
const MAIN_CHUNK_SIZE_LIMIT = 5.3 * 1024 * 1024; // 5.3MB for main index chunk
49+
const MAIN_CHUNK_SIZE_LIMIT = 5.5 * 1024 * 1024; // 5.5MB for main index chunk
5050
const OTHER_CHUNK_SIZE_LIMIT = 5 * 1024 * 1024; // 5MB for other chunks
5151

5252
const checkers: Checkers = {

0 commit comments

Comments
 (0)