g6/webpack.dev.config.js
2020-02-14 11:30:12 +08:00

14 lines
237 B
JavaScript

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