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.
1 parent 4988041 commit e4638b0Copy full SHA for e4638b0
config/rspack.config.js
@@ -178,8 +178,10 @@ module.exports = (webpackEnv, argv) => {
178
// Disable compress and mangle as it has some bugs, i.e. when using arquero#from it fails if no names are passed.
179
// See https://github.com/web-infra-dev/rspack/issues/4980 for a discussion.
180
new SwcJsMinimizerRspackPlugin({
181
- compress: false,
182
- mangle: false,
+ minimizerOptions: {
+ compress: false,
183
+ mangle: false,
184
+ },
185
}),
186
new LightningCssMinimizerRspackPlugin(),
187
],
0 commit comments