sdk: remove terser

This commit is contained in:
Koushik Dutta
2023-02-14 20:13:17 -08:00
parent 1fe6cbf7ca
commit e3c9c7bf16

View File

@@ -121,15 +121,17 @@ module.exports = {
optimization: {
minimize: isProduction,
minimizer: [
new TerserPlugin({
terserOptions: {
mangle: {
properties: {
regex: /^[\$_]/
}
},
},
}),
new TerserPlugin(
// {
// terserOptions: {
// mangle: {
// properties: {
// regex: /^[\$_]/
// }
// },
// },
// }
),
],
},