const commonConfiguration = require('./webpack.common.js'); module.exports = { ...commonConfiguration, mode: 'development', watch: true, watchOptions: { ignored: /node_modules/, aggregateTimeout: 300, poll: 1000, }, devServer: { host: '0.0.0.0', static: './dist', liveReload: true, open: true, allowedHosts: 'all', https: false }, };