Skip to content

Commit 7812f34

Browse files
committed
Increased bundle size threshold
1 parent 5fcf18e commit 7812f34

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

webpack.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,9 @@ module.exports = {
5454
filename: '[name]/bundle.js',
5555
path: path.resolve(FRONTEND_ROOT, 'static'),
5656
},
57+
performance: {
58+
// Don't whine until we hit 5 MiB
59+
maxAssetSize: 5242880,
60+
maxEntrypointSize: 5242880,
61+
}
5762
}

0 commit comments

Comments
 (0)