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