Change max chunk size limit (#14398)

Deploy on main is broken, this should fix it
This commit is contained in:
Félix Malfait
2025-09-10 17:28:26 +02:00
committed by GitHub
parent 3bfb5bbd86
commit 5f51d5181e
+1 -1
View File
@@ -46,7 +46,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 = 4.8 * 1024 * 1024; // 4.7MB for main index chunk
const MAIN_CHUNK_SIZE_LIMIT = 4.9 * 1024 * 1024; // 4.7MB for main index chunk
const OTHER_CHUNK_SIZE_LIMIT = 5 * 1024 * 1024; // 5MB for other chunks
const checkers: Checkers = {