Explorar el Código

chore: fix source map webpack build file

sschmidTU hace 6 años
padre
commit
9361925708
Se han modificado 1 ficheros con 3 adiciones y 4 borrados
  1. 3 4
      webpack.sourcemap.js

+ 3 - 4
webpack.sourcemap.js

@@ -1,8 +1,7 @@
 var merge = require('webpack-merge')
-var common = require('./webpack.common.js')
+var production = require('./webpack.prod.js')
 
 // will create a build plus separate .min.js.map source map for debugging
-module.exports = merge(common, {
-    devtool: 'source-map',
-    mode: 'development'
+module.exports = merge(production, {
+    devtool: 'source-map'
 })