g6/webpack.dev.config.js

14 lines
237 B
JavaScript
Raw Permalink Normal View History

2019-12-02 19:58:02 +08:00
const webpackConfig = require('./webpack.config');
module.exports = Object.assign(
{
devtool: 'cheap-source-map',
watch: true,
watchOptions: {
aggregateTimeout: 300,
2020-02-14 10:10:54 +08:00
poll: 1000,
},
2019-12-02 19:58:02 +08:00
},
2020-02-14 10:10:54 +08:00
webpackConfig,
2019-12-02 19:58:02 +08:00
);