-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.dev.js
54 lines (46 loc) · 1.17 KB
/
webpack.config.dev.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
/* eslint-disable max-len */
const path = require('path');
const webpack = require('webpack');
const clientPath = path.join(__dirname, 'client');
const staticPath = path.join(__dirname, 'static');
const baseConfig = require('./webpack.config.base.js');
const config = Object.create(baseConfig);
config.devtool = 'eval';
config.output = {
filename: '[name].js',
path: staticPath
};
config.module.loaders.push(
{
test: /\.js$/,
loaders: [ 'react-hot', 'babel' ],
include: [ clientPath ]
},
{
test: /\.styl$/,
loader: 'style!css?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss!stylus'
}
);
config.plugins.push(
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
filename: '[name].js'
}),
new webpack.DefinePlugin({
'__DEV__': true,
'NODE_ENV': 'development',
'process.env': {
'NODE_ENV': JSON.stringify('development')
}
})
);
config.devServer = {
proxy: {
'*': 'http://localhost:8000'
},
watchOptions: {
aggregateTimeout: 300,
poll: true
}
};
module.exports = config;