canihazusername/webpack.config.js

17 lines
257 B
JavaScript
Raw Normal View History

2019-02-09 19:09:04 +01:00
const common = {
stats: {
assets: true,
assetsSort: 'size',
all: false,
errors: true,
colors: true,
performance: true,
timings: true,
},
}
const src = require('./src/webpack.config.js')
module.exports = [
Object.assign({}, common, src),
]