From 2a5b76ddfb146a9c0af85e02bdeda520235fde35 Mon Sep 17 00:00:00 2001 From: Brian Choromanski Date: Thu, 19 Oct 2023 15:09:19 -0400 Subject: [PATCH] Overriding default webpack performance config to reduce warnings --- webpack/webpack.common.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webpack/webpack.common.js b/webpack/webpack.common.js index e1a3e66c..21ff3582 100644 --- a/webpack/webpack.common.js +++ b/webpack/webpack.common.js @@ -185,6 +185,12 @@ module.exports = env => { stream: env.stream }), new configDiffPlugin() - ] + ], + performance: { + hints: false, + maxEntrypointSize: 512000, + maxAssetSize: 512000 + } + }; }; \ No newline at end of file