329da5fb99
Then we can include all server repo webpack configs in 1 go Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
const merge = require('webpack-merge');
|
|
const common = require('./webpack.common.js');
|
|
|
|
module.exports = common.map(
|
|
config => merge(config, {
|
|
mode: 'development',
|
|
devtool: 'cheap-source-map',
|
|
})
|
|
)
|