g6/webpack.dev.config.js
2019-12-02 19:58:02 +08:00

14 lines
234 B
JavaScript

const webpackConfig = require('./webpack.config');
module.exports = Object.assign(
{
devtool: 'cheap-source-map',
watch: true,
watchOptions: {
aggregateTimeout: 300,
poll: 1000
}
},
webpackConfig
);