-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
69 lines (65 loc) · 1.65 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
var path = require('path');
var webpack = require('webpack');
var CompressionPlugin = require('compression-webpack-plugin');
var isProduction = true; // process.env.NODE_ENV ? process.env.NODE_ENV.trim() == 'production' : false,
var serverPort = 8080;
var subFolder = '/src/dist';
var outputPath = path.join(__dirname, subFolder);
var outputFileName = 'bundle.js';
var config = {
entry: [
'./src/index.js'
],
output: {
path: outputPath,
publicPath: '/dist', // '/' + path.basename(__dirname) + subFolder || the path as defined in our index.html
filename: outputFileName
},
devtool: isProduction ? null : 'source-map', // eval?
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react', 'stage-0'] // stage-0 is ES7
}
},
{ test: /\.css$/, loader: 'style!css' }
]
},
resolve: {
extensions: ['', '.js', '.jsx']
},
devServer: {
port: serverPort,
contentBase: path.resolve(__dirname, './src')
},
watch: true,
plugins: []
};
if (isProduction) {
config.plugins.push(
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}));
// config.plugins.push(new webpack.optimize.DedupePlugin());
// config.plugins.push(new webpack.optimize.OccurrenceOrderPlugin());
config.plugins.push(
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: true
},
comments: false,
sourceMap: false
})
);
config.plugins.push(
new CompressionPlugin()
);
}
module.exports = config;