From 69dec1bdf985e7a5406c1f7b1768665cb0de7a92 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Thu, 20 Jul 2023 17:21:47 +0530 Subject: [PATCH] Set parallel to false for TerserPlugin to try and fix build failures --- web/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/webpack.config.js b/web/webpack.config.js index 6e7b6059e..d0b5043f6 100644 --- a/web/webpack.config.js +++ b/web/webpack.config.js @@ -567,7 +567,7 @@ module.exports = [{ optimization: { minimizer: PRODUCTION ? [ new TerserPlugin({ - parallel: true, + parallel: false, extractComments: true, terserOptions: { compress: true,