From 9f291dcfed95c4cd84840a20f3f9cfdefa55bd38 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 19 Jul 2024 23:43:39 +0000 Subject: [PATCH] Increased webpack performance limit. Changed entrypointSize performance hint limit. Increased maxAssetSize webpack performance hint limit. --- Props/webpack.common.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Props/webpack.common.js b/Props/webpack.common.js index cb6668c..c5412cc 100644 --- a/Props/webpack.common.js +++ b/Props/webpack.common.js @@ -72,7 +72,11 @@ let config = { } ], }) - ] + ], + performance: { + maxEntrypointSize: 1048576, + maxAssetSize: 1048576 + }, }; module.exports = config;