Skip to content

Commit 251ea10

Browse files
authored
config: increase max bundle size to 1024 KiB (#6231)
1 parent 8b54d5a commit 251ea10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack/_config-builder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ export default function buildConfig(
133133

134134
performance: {
135135
hints: "error",
136-
maxEntrypointSize: 1024000,
137-
maxAssetSize: 1024000,
136+
maxEntrypointSize: 1048576, // 1024 KiB,
137+
maxAssetSize: 1048576,
138138
},
139139

140140
optimization: {

0 commit comments

Comments
 (0)