Disable source map

This commit is contained in:
syuilo 2018-03-15 20:33:28 +09:00
parent fea996d623
commit 6fb11a608b
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ module.exports = entries.map(x => {
modules: ['node_modules', './webpack/loaders']
},
cache: true,
devtool: 'source-map',
devtool: false, //'source-map',
optimization: {
minimize: isProduction && doMinify
},