We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
minimize
1 parent 5296f1d commit 015335fCopy full SHA for 015335f
1 file changed
scripts/build/bundler.js
@@ -269,13 +269,14 @@ function getWebpackConfig(bundle) {
269
},
270
};
271
272
- if (bundle.terserOptions) {
273
- const TerserPlugin = require("terser-webpack-plugin");
274
-
275
- config.optimization = {
276
- minimizer: [new TerserPlugin(bundle.terserOptions)],
277
- };
278
- }
+ // if (bundle.terserOptions) {
+ // const TerserPlugin = require("terser-webpack-plugin");
+
+ // config.optimization = {
+ // minimizer: [new TerserPlugin(bundle.terserOptions)],
+ // };
+ // }
279
+ config.optimization = { minimize: false };
280
281
return config;
282
}
0 commit comments