12345678910111213141516171819202122232425262728293031 |
- const webpack = require('webpack')
- const merge = require('webpack-merge')
- const WriteFilePlugin = require('write-file-webpack-plugin')
- const SimpleProgressWebpackPlugin = require('simple-progress-webpack-plugin')
- const common = require('./webpack.common.js')
- module.exports = merge(common, {
- mode: 'development',
- entry: {
- client: ['./client/index.js', 'webpack-hot-middleware/client']
- },
- output: {
- pathinfo: true
- },
- plugins: [
- new SimpleProgressWebpackPlugin({
- format: 'compact'
- }),
- new webpack.DefinePlugin({
- '__REACT_DEVTOOLS_GLOBAL_HOOK__': '({ isDisabled: true })'
- }),
- new WriteFilePlugin(),
- new webpack.HotModuleReplacementPlugin(),
- new webpack.WatchIgnorePlugin([
- /node_modules/
- ])
- ],
- watch: true
- })
|