From 3e0694b8d2305e161e25fdd5e54105ae08e9fa70 Mon Sep 17 00:00:00 2001 From: Bala Lakshmi Narayanasami Date: Wed, 20 Jul 2022 01:34:55 +0530 Subject: [PATCH] Setting webpack compress true --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index de87af5a2..a7e43931c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -244,7 +244,7 @@ module.exports = function (_env = {}, argv = {}) { new TerserPlugin({ terserOptions: { // These options increase our initial bundle size by ~5% but the builds are significantly faster and won't run out of memory - compress: false, + compress: true, mangle: { keep_fnames: true, keep_classnames: true,