From a3bd9aa1c5235f46131e1b1413ad2b05a093440f Mon Sep 17 00:00:00 2001 From: Erik Ziegler Date: Thu, 8 Jul 2021 15:46:20 +0200 Subject: [PATCH] chore: fix sourceMap boolean in terser plugin --- .webpack/webpack.base.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/.webpack/webpack.base.js b/.webpack/webpack.base.js index 58a4e25c5..46efff112 100644 --- a/.webpack/webpack.base.js +++ b/.webpack/webpack.base.js @@ -123,9 +123,6 @@ module.exports = (env, argv, { SRC_DIR, DIST_DIR }) => { if (isProdBuild) { config.optimization.minimizer = [ new TerserJSPlugin({ - // Supports: - // source-map and inline-source-map - sourceMap: isProdBuild && !isQuickBuild, parallel: true, terserOptions: {}, }),