disable mangle

pull/5370/head
filip mertens 2 years ago committed by Aniket
parent 60f2a72943
commit 48668de06c
  1. 6
      apps/remix-ide/webpack.config.js

@ -87,9 +87,7 @@ module.exports = composePlugins(withNx(), withReact(), (config) => {
terserOptions: { terserOptions: {
ecma: 2015, ecma: 2015,
compress: true, compress: true,
mangle: { mangle: false,
keep_fnames: true,
},
format: { format: {
comments: false, comments: false,
}, },
@ -98,6 +96,6 @@ module.exports = composePlugins(withNx(), withReact(), (config) => {
}), }),
new CssMinimizerPlugin(), new CssMinimizerPlugin(),
]; ];
return config; return config;
}); });

Loading…
Cancel
Save