antv-l7/webpack-dev.config.js

11 lines
206 B
JavaScript
Executable File

const webpackConfig = require('./webpack.config');
const _ = require('lodash');
module.exports = _.merge({
watch: true,
watchOptions: {
aggregateTimeout: 300,
poll: 1000
}
}, webpackConfig);