g6/packages/pc/webpack.dev.config.js

15 lines
267 B
JavaScript

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