-
Notifications
You must be signed in to change notification settings - Fork 41
/
webpack.prod.config.js
61 lines (57 loc) · 1.42 KB
/
webpack.prod.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
61
var webpack = require('webpack');
var UglifyJsPlugin = webpack.optimize.UglifyJsPlugin;
var path = require('path');
module.exports = {
entry: {
main : './app/index',
vendor : [
'react',
'redux',
'react-redux',
'react-dom',
'jquery',
'whatwg-fetch'
]
},
output: {
path: path.join(__dirname, 'src/public/assets'),
filename: '[name].js',
publicPath: 'http://localhost:3000/static/',
},
plugins: [
new webpack.optimize.CommonsChunkPlugin('vendor', './vendor.bundle.js'),
new webpack.optimize.UglifyJsPlugin({
compress: {
//supresses warnings, usually from module minification
warnings: false
}
}),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production")
}})
],
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'],
}
};