소스 검색

chore: fix source map webpack build file

sschmidTU 6 년 전
부모
커밋
9361925708
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  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'
 })