UNPKG

237 BJavaScriptView Raw
1const webpackConfig = require('./webpack.config');
2const _ = require('lodash');
3
4module.exports = _.merge({
5 devtool: 'cheap-source-map',
6 watch: true,
7 watchOptions: {
8 aggregateTimeout: 300,
9 poll: 1000
10 }
11}, webpackConfig);