forked from w3irdrobot/react-router-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
114 lines (111 loc) · 2.94 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
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
const { resolve } = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const { NODE_ENV = 'development' } = process.env;
const ROOT = resolve(__dirname);
const SRC = resolve(ROOT, 'src');
const VENDORS = [
'react',
'react-dom',
'axios',
'lodash.times',
'semantic-ui-react',
];
const HASH_TYPE = NODE_ENV === 'production' ? 'chunkhash' : 'hash';
const onlyIn = env => plugin =>
NODE_ENV === env ? plugin : null;
const onlyInDev = onlyIn('development');
const onlyInProd = onlyIn('production');
module.exports = {
devtool: NODE_ENV !== 'production' ? 'cheap-module-eval-source-map' : false,
entry: {
app: [
onlyInDev('react-hot-loader/patch'),
onlyInDev('webpack-hot-middleware/client'),
resolve(SRC, 'fe', 'app.js'),
].filter(Boolean),
vendors: VENDORS,
},
output: {
filename: `[name].[${HASH_TYPE}].js`,
path: resolve(ROOT, 'dist', 'client'),
publicPath: '/',
},
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
modules: true,
camelCase: true,
sourceMap: true,
importLoaders: 1,
localIdentName: '[name]__[local]___[hash:base64:5]',
},
},
],
}),
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader'],
}),
include: /node_modules/,
},
{
test: /\.(png|eot|woff2?|ttf|svg)$/,
use: ['url-loader?limit=10000'],
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: resolve(SRC, 'fe', 'index.html'),
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(NODE_ENV),
}),
new ExtractTextPlugin({
filename: 'styles.[contenthash].css',
allChunks: true,
disable: NODE_ENV !== 'production',
}),
onlyInDev(new webpack.HotModuleReplacementPlugin()),
onlyInDev(new webpack.NoEmitOnErrorsPlugin()),
onlyInDev(new webpack.NamedModulesPlugin()),
onlyInProd(new webpack.optimize.CommonsChunkPlugin({
names: ['vendors', 'manifest'],
})),
onlyInProd(new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true,
},
output: {
comments: false,
},
})),
].filter(Boolean),
};