forked from VerusCoin/verus-pbaas-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
190 lines (180 loc) · 4.6 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
const webpack = require('webpack');
const path = require('path');
const DashboardPlugin = require('webpack-dashboard/plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const nodeEnv = process.env.NODE_ENV || 'development';
const isProduction = nodeEnv === 'production';
const jsSourcePath = path.join(__dirname, './src');
const buildPath = path.join(__dirname, './build');
const imgPath = path.join(__dirname, './src/assets/img');
const wwwPath = path.join(__dirname, './www');
// Common plugins
/*
* The CommonsChunkPlugin is an opt-in feature that creates a separate file (known as a chunk),
* consisting of common modules shared between multiple entry points.
* By separating common modules from bundles,
* the resulting chunked file can be loaded once initially,
* and stored in cache for later use.
* This results in pagespeed optimizations as the browser can quickly serve the shared code from cache,
* rather than being forced to load a larger bundle whenever a new page is visited.
*/
const plugins = [
/*
* The DefinePlugin allows you to create global constants which can be configured at compile time.
* This can be useful for allowing different behaviour between development builds and release builds.
* For example, you might use a global constant to determine whether logging takes place;
* perhaps you perform logging in your development build but not in the release build.
* That's the sort of scenario the DefinePlugin facilitates.
*/
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify(nodeEnv),
},
}),
new webpack.NamedModulesPlugin(),
new HtmlWebpackPlugin({
template: path.join(wwwPath, "index.html"),
path: buildPath,
filename: "index.html",
}),
new MiniCssExtractPlugin({
filename: "style.css",
}),
new webpack.ProvidePlugin({
React: "react",
}),
];
// Common rules
const rules = [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&mimetype=application/font-woff',
},
{
test: /\.(ttf|eot|svg|png)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
},
{
test: /\.(png|gif|jpg|svg)$/,
include: imgPath,
use: 'url-loader?limit=20480&name=assets/[name].[ext]',
},
];
if (isProduction) {
// Production plugins
plugins.push(
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
}),
);
// Production rules
rules.push(
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
],
},
);
} else {
// Development plugins
plugins.push(
new webpack.HotModuleReplacementPlugin(),
new DashboardPlugin(),
);
// Development rules
rules.push(
{
test: /\.scss$/,
exclude: /node_modules/,
test: /\.(sa|sc|c)ss$/,
use: [
'style-loader',
'css-loader',
'sass-loader?sourceMap',
],
},
);
}
module.exports = {
devtool: isProduction ? 'eval' : 'source-map',
context: jsSourcePath,
entry: {
js: ['@babel/polyfill', './index.js'],
},
output: {
path: buildPath,
publicPath: '',
filename: 'app.js',
},
module: {
rules,
},
resolve: {
extensions: ['.webpack-loader.js', '.web-loader.js', '.loader.js', '.js', '.jsx'],
modules: [
path.resolve(__dirname, 'node_modules'),
'node_modules',
jsSourcePath,
],
},
plugins,
devServer: {
contentBase: isProduction ? './build' : './src',
historyApiFallback: true,
port: 3003,
compress: isProduction,
inline: !isProduction,
hot: !isProduction,
stats: {
assets: true,
children: false,
chunks: false,
hash: false,
modules: false,
publicPath: false,
timings: true,
version: false,
warnings: true,
colors: {
green: '\u001b[32m',
},
},
},
optimization: {
minimizer: [
new UglifyJSPlugin({
sourceMap: true,
uglifyOptions: {
warnings: false,
compress: {
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true,
},
output: {
comments: false,
},
},
}),
],
},
stats: { children: false },
};