-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
119 lines (114 loc) · 2.89 KB
/
webpack.config.js
File metadata and controls
119 lines (114 loc) · 2.89 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// base webpack config
const config = {
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: { sourceMap: true, importLoaders: 1 },
},
{
loader: 'postcss-loader',
options: { sourceMap: true }
},
],
}),
}, {
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/
}, {
test: /\.(jpg|jpeg|png|svg)$/,
loader: 'file-loader',
options: {
name: '[path][name].[hash].[ext]',
}
}, {
test: /\.(txt|yaml|md)$/,
use: 'raw-loader'
}, {
test: /\.(woff|woff2|eot|ttf)$/,
loader: 'url-loader?limit=100000'
}, {
test: /\.json$/,
loader: 'json-loader'
}
]
},
entry: './app/index.jsx',
resolve: {
extensions: ['.js', '.jsx']
},
plugins: [
new ExtractTextPlugin('[name].[contenthash].css'),
new HtmlWebpackPlugin({
template: 'index.template.ejs',
inject: 'body',
}),
new webpack.optimize.ModuleConcatenationPlugin()
],
devtool: 'cheap-module-source-map',
output: {
filename: '[name].[chunkhash].js',
path: path.resolve(__dirname, 'dist'),
// publicPath: "/dist/"
}
};
module.exports = (env = {}) => {
// Variables set by npm scripts in package.json
console.log(env);
const isProduction = env.production === true;
if (isProduction) {
config.plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
);
config.plugins.push(
new UglifyJSPlugin({
sourceMap: true
})
);
config.plugins.push(
new CompressionPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: /\.js$|\.css$|\.html$/,
threshold: 10240,
minRatio: 0
})
);
config.entry = {
app: './app/index.jsx',
vendor: ['react', 'react-dom', 'react-router', 'prop-types', 'redux'],
};
config.plugins.push(
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
})
);
} else {
config.plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('development')
})
);
}
if (env.analyze) {
config.plugins.push(
new BundleAnalyzerPlugin()
);
}
return config;
};