-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.hot-config.js
50 lines (44 loc) · 1.03 KB
/
webpack.hot-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
import path from 'path';
import config from './config';
import webpack from 'webpack';
const {
PROTOCOL,
HOSTNAME,
WEBPACK_DEV_SERVER_PORT,
PUBLIC_PATH,
BABEL_STAGE
} = config;
const webpackAddress = `${PROTOCOL}${HOSTNAME}:${WEBPACK_DEV_SERVER_PORT}`;
const publicPath = `${webpackAddress}${PUBLIC_PATH}`;
export default {
devtool: 'eval-source-map',
cache: true,
context: __dirname,
entry: {
client: [
`webpack-dev-server/client?${webpackAddress}`,
'webpack/hot/dev-server',
'./client'
]
},
contentBase: path.join(__dirname),
output: {
path: path.join(__dirname, PUBLIC_PATH),
filename: 'client.js',
publicPath: publicPath + '/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
resolve: {
extensions: ['', '.js', '.jsx']
},
module: {
loaders: [{
test: /\.(js|jsx)$/,
exclude: /node_modules\/(?!react-router)(?!app)/,
loaders: ['react-hot-loader', `babel-loader?stage=${BABEL_STAGE}`]
}]
}
};