diff options
author | Vitaly Takmazov | 2021-08-16 23:50:32 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:57 +0300 |
commit | 71da010aea285970f546073b8313dbddb5a10cd4 (patch) | |
tree | 2d59ffde3da5272591f2672b667a943b92fa3505 /vnext/webpack.config.js | |
parent | f6ef6e81819bb85e1c577de74f78f5dc1057e16b (diff) |
css minimizer plugin now respect source map settings
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index 1c7ed6d2..ed8686c1 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -107,9 +107,7 @@ module.exports = (env, argv) => { config.optimization = { minimizer: [ '...', - new CssMinimizerPlugin({ - sourceMap: true - }) + new CssMinimizerPlugin({}) ], splitChunks: { chunks: 'all' |