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