Browse Source

Pass `false` webpack devtool option instead of `null`

bubble
keik 6 years ago
parent
commit
765fb75356
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      make-webpack-config.js

+ 1
- 1
make-webpack-config.js View File

@@ -137,7 +137,7 @@ module.exports = function(rules, options) {
}
},

devtool: specialOptions.sourcemaps ? "nosource-source-map" : null,
devtool: specialOptions.sourcemaps ? "nosource-source-map" : false,

plugins,



Loading…
Cancel
Save