-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
120 lines (114 loc) · 3.04 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
const path = require('path');
const dotenv = require('dotenv');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const ManifestPlugin = require('webpack-manifest-plugin');
const LoadablePlugin = require('@loadable/webpack-plugin');
dotenv.config();
const isProduction = process.env.NODE_ENV === 'production';
const isDevelopment = process.env.NODE_ENV === 'development';
const plugins = [
new ManifestPlugin(),
new LoadablePlugin({ writeToDisk: true }),
new MiniCssExtractPlugin({
filename: isProduction ? '[name].[chunkhash].css' : '[name].bundle.css',
ignoreOrder: true,
}),
];
if (isDevelopment) {
plugins.push(new webpack.HotModuleReplacementPlugin());
plugins.push(new webpack.NamedModulesPlugin());
plugins.push(new webpack.NoEmitOnErrorsPlugin());
}
const minificationPlugins = [
new TerserPlugin({
sourceMap: true,
cache: true,
parallel: true,
// Exclude uglification for the `vendor` chunk
chunkFilter: (chunk) => chunk.name !== 'vendor',
}),
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: {
map: {
inline: false,
},
},
}),
];
module.exports = {
mode: process.env.NODE_ENV || 'production',
entry: {
client: !isDevelopment
? path.resolve(__dirname, 'src/client/index.js')
: [
'webpack-hot-middleware/client?reload=true',
path.resolve(__dirname, 'src/client/index.js'),
],
},
output: {
filename: isProduction ? '[name].[chunkhash].js' : '[name].bundle.js',
path: path.resolve(__dirname, './build-static'),
publicPath: '/',
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
envName: 'webpack',
},
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === 'development',
},
},
{
loader: 'css-loader',
options: {
sourceMap: isProduction,
modules: {
localIdentName: '[name]__[local]___[hash:base64:5]',
},
importLoaders: 1,
},
},
{
loader: 'postcss-loader',
},
],
},
],
},
plugins,
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
chunks: 'initial',
test: /[\\/]node_modules[\\/](react|react-dom|react-router|react-router-dom)[\\/]/,
name: 'vendor',
enforce: true,
},
},
},
...(isProduction && { minimizer: minificationPlugins }),
},
resolve: {
extensions: ['.js', '.jsx', '.css', '.json'],
},
devtool: isProduction ? 'cheap-source-map' : false,
performance: {
maxAssetSize: 500000, // in bytes
hints: false,
},
};