Increase maxEntrypointSize and maxAssetSize limits for webpack production build

This commit is contained in:
Caleb Taylor
2019-01-08 14:06:56 -08:00
parent 77e0b7706b
commit d0a0d29a3e
+4
View File
@@ -9,6 +9,10 @@ module.exports = merge(base, {
filename: "bundle.min.js" filename: "bundle.min.js"
}, },
devtool: false, devtool: false,
performance: {
maxEntrypointSize: 900000,
maxAssetSize: 900000
},
optimization: { optimization: {
minimizer: [ minimizer: [
new TerserPlugin({ new TerserPlugin({