2018-10-10 19:54:27 +00:00
|
|
|
const common = require('./webpack.common.js')
|
|
|
|
const htmlexport = require('./webpack.htmlexport')
|
|
|
|
const merge = require('webpack-merge')
|
2016-10-07 15:05:23 +00:00
|
|
|
|
2018-10-10 19:54:27 +00:00
|
|
|
module.exports = [
|
|
|
|
// merge common config
|
|
|
|
merge(common, {
|
|
|
|
mode: 'development',
|
|
|
|
devtool: 'cheap-module-eval-source-map'
|
|
|
|
}),
|
|
|
|
merge(htmlexport, {
|
|
|
|
mode: 'development',
|
|
|
|
devtool: 'cheap-module-eval-source-map'
|
|
|
|
})]
|