8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
|
const merge = require('webpack-merge')
|
||
|
|
||
|
const baseConfig = require('./webpack.renderer.config')
|
||
|
|
||
|
module.exports = merge.smart(baseConfig, {
|
||
|
mode: 'production'
|
||
|
})
|