webpack extractComments: false

This commit is contained in:
Chen-I Lim 2021-01-26 13:15:31 -08:00
parent 451fbbaf4c
commit cbe8e42e62

View file

@ -11,7 +11,7 @@ const config = merge.merge(commonConfig, {
mode: 'production',
optimization: {
minimize: true,
minimizer: [new TerserPlugin({})],
minimizer: [new TerserPlugin({extractComments: false})],
},
});