chore(webpack): disable style sourcemap on PROD
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -28,7 +28,7 @@ let assets = _.map(bundleConfig.vendor, (asset, name) => { | @@ -28,7 +28,7 @@ let assets = _.map(bundleConfig.vendor, (asset, name) => { | ||
28 | let webpackConfig = merge(baseConfig, { | 28 | let webpackConfig = merge(baseConfig, { |
29 | module: { | 29 | module: { |
30 | rules: utils.styleLoaders({ | 30 | rules: utils.styleLoaders({ |
31 | - sourceMap: config.build.productionSourceMap, | 31 | + sourceMap: false, |
32 | extract: true | 32 | extract: true |
33 | }) | 33 | }) |
34 | }, | 34 | }, |
-
Please register or login to post a comment