-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
80 lines (74 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
// Okay, this may be confusing at first glance but go through it step-by-step
module.exports = env => {
const ifProd = plugin => env.prod ? plugin : undefined;
const removeEmpty = array => array.filter(p => !!p);
return {
/**
* entry tells webpack where to start looking.
* In this case we have both an app and vendor file.
*/
entry: {
app: path.join(__dirname, '../src/'),
vendor: ['react', 'react-dom', 'react-router'],
},
/**
* output tells webpack where to put the files he creates
* after running all its loaders and plugins.
*
* > [name].[hash].js will output something like app.3531f6aad069a0e8dc0e.js
* > path.join(__dirname, '../build/') will output into a /build folder in
* the root of this prject.
*/
output: {
filename: '[name].[hash].js',
path: path.join(__dirname, '../build/'),
// publicPath: '/', can uncomment if you want everything relative to root '/'
},
module: {
// Loaders allow you to preprocess files!
loaders: [
{
test: /\.(js)$/, // look for .js files
exclude: /node_modules/, // ingore /node_modules
loader: 'babel-loader', // preprocess with that babel goodness
query: {
cacheDirectory: true,
},
},
],
},
plugins: removeEmpty([
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity,
filename: '[name].[hash].js',
}),
/**
* HtmlWebpackPlugin will make sure out JavaScriot files are being called
* from within our index.html
*/
new HtmlWebpackPlugin({
template: path.join(__dirname, '../src/index.html'),
filename: 'index.html',
inject: 'body',
}),
// Only running DedupePlugin() and UglifyJsPlugin() in production
ifProd(new webpack.optimize.DedupePlugin()),
ifProd(new webpack.optimize.UglifyJsPlugin({
compress: {
'screw_ie8': true,
'warnings': false,
'unused': true,
'dead_code': true,
},
output: {
comments: false,
},
sourceMap: false,
})),
]),
};
};