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 30c19e4 commit 8c5de7bCopy full SHA for 8c5de7b
frontend/webpack.prod.js
@@ -6,6 +6,11 @@ const TerserJSPlugin = require('terser-webpack-plugin');
6
module.exports = merge(common, {
7
mode: 'production',
8
optimization: {
9
- minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
+ minimizer: [
10
+ new TerserJSPlugin({
11
+ extractComments: false,
12
+ }),
13
+ new OptimizeCSSAssetsPlugin({})
14
+ ],
15
},
16
});
0 commit comments