From 3424acfc01cec62e3d53a8d575b4c322ea5d85d8 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Sun, 5 Feb 2023 13:30:18 +0100 Subject: [PATCH] disable mangle --- apps/remix-ide/webpack.config.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/remix-ide/webpack.config.js b/apps/remix-ide/webpack.config.js index aa2f2b9437..b1de0eee6a 100644 --- a/apps/remix-ide/webpack.config.js +++ b/apps/remix-ide/webpack.config.js @@ -87,9 +87,7 @@ module.exports = composePlugins(withNx(), withReact(), (config) => { terserOptions: { ecma: 2015, compress: true, - mangle: { - keep_fnames: true, - }, + mangle: false, format: { comments: false, }, @@ -98,6 +96,6 @@ module.exports = composePlugins(withNx(), withReact(), (config) => { }), new CssMinimizerPlugin(), ]; - + return config; });