-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
39 lines (38 loc) · 964 Bytes
/
webpack.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
var webpack = require('webpack');
module.exports = {
entry: process.env.PROD
? [ './js/index' ]
: [ 'webpack-dev-server/client?http://0.0.0.0:3000',
'webpack/hot/only-dev-server',
'./js/index' ],
output: {
path: __dirname + '/build/',
filename: '[name].entry.js',
publicPath: '/build'
},
plugins: process.env.PROD
? []
: [ new webpack.DefinePlugin({ DEBUG: true }),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin() ],
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loaders: process.env.PROD
? [ 'babel?experimental' ]
: [ 'react-hot', 'babel?experimental' ]
},
{
test: /\.less$/,
loaders: [
"style-loader",
"css-loader",
"autoprefixer-loader?browsers=last 2 version",
"less-loader?strictMath&cleancss"
]
}
]
}
};