mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-11-15 09:35:14 +01:00
15 lines
251 B
JavaScript
15 lines
251 B
JavaScript
|
const common = require('./webpack.common.config')
|
||
|
|
||
|
module.exports = Object.assign({}, common, {
|
||
|
mode: 'production',
|
||
|
output: {
|
||
|
publicPath: './'
|
||
|
},
|
||
|
stats: {
|
||
|
colors: true,
|
||
|
children: false,
|
||
|
chunks: false,
|
||
|
modules: false
|
||
|
}
|
||
|
})
|