-
Notifications
You must be signed in to change notification settings - Fork 41
/
webpack.config.js
60 lines (57 loc) · 1.46 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
var webpack = require('webpack');
var UglifyJsPlugin = webpack.optimize.UglifyJsPlugin;
var path = require('path');
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: {
main : [
'webpack-hot-middleware/client?http:localhost:9000',
'webpack/hot/only-dev-server',
'./app/index'
],
vendor : [
'react',
'redux',
'react-redux',
'react-dom',
'jquery',
'whatwg-fetch',
]
},
output: {
publicPath: "http://0.0.0.0:9000/assets/",
path: path.join(__dirname, 'src/public/assets'),
filename: '[name].js'
},
plugins: [
new webpack.optimize.CommonsChunkPlugin('vendor', './vendor.bundle.js'),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("development")
}}),
new webpack.HotModuleReplacementPlugin()
],
module: {
loaders: [
{
test: /(\.jsx|\.js)$/,
loaders: ['babel?presets[]=es2015&presets[]=react'],
exclude: /node_modules/,
include: __dirname
},
{
test: /\.(css|less)$/,
loader: 'null'
},
{ test: /\.woff2?$/, loader: 'null' },
{ test: /\.ttf$/, loader: 'null' },
{ test: /\.eot$/, loader: 'null' },
{ test: /\.svg$/, loader: 'null' },
{ test: /\.(png|jpg|jpeg|gif|webp)$/i, loader: 'url?limit=200' },
{ test: /\.json$/, loader: 'json' }
],
},
resolve: {
extensions: ['', '.js', '.jsx'],
}
};