Overriding default webpack performance config to reduce warnings

This commit is contained in:
Brian Choromanski 2023-10-19 15:09:19 -04:00
parent c8c141f5c9
commit 2a5b76ddfb

View file

@ -185,6 +185,12 @@ module.exports = env => {
stream: env.stream stream: env.stream
}), }),
new configDiffPlugin() new configDiffPlugin()
] ],
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000
}
}; };
}; };