-
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.prod.js 196 B
const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = common.map(
config => merge(config, {
mode: 'production',
devtool: '#source-map',
})
)