forked from NewDadaFE/react-impression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
executable file
·55 lines (52 loc) · 1.31 KB
/
webpack.dev.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var path = require('path'),
webpack = require('webpack'),
publicPath = 'http://localhost:9008/';
module.exports = {
devtool: 'source-map',
entry: [
'react-hot-loader/patch',
'webpack-dev-server/client?' + publicPath,
'webpack/hot/only-dev-server',
'./src/scripts/index',
],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'scripts/app.js',
publicPath: publicPath,
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"development"',
}),
],
module: {
preLoaders: [{
test: /\.js$/,
loader: 'eslint-loader',
exclude: /node_modules/,
}],
loaders: [{
test: /\.js$/,
loaders: ['babel'],
exclude: /node_modules/,
}],
},
eslint: {
failOnError: true,
},
devServer: {
contentBase: path.resolve(__dirname, 'build'),
publicPath: publicPath,
hot: true,
historyApiFallback: true,
stats: {
chunks: false,
children: false,
},
headers: {
'Access-Control-Allow-Origin': '*',
},
},
};