-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
83 lines (82 loc) · 2.26 KB
/
webpack.prod.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
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const TerserJSPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
module.exports = {
mode: 'production',
entry: './src/index.jsx',
output: {
path: path.resolve(__dirname, 'dist/'),
publicPath: './',
filename: 'bundle.js',
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
options: {
plugins: ['lodash'],
presets: [
[
'@babel/preset-env',
{ modules: false, targets: { node: 4 } },
'react',
],
],
},
},
{
test: /\.(s[ac]ss|css)$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
},
{
test: /\.(png|jpe?g|gif|ico)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'assets',
},
},
{
test: /\.(woff|woff2|eot|ttf|otf|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'assets',
},
},
],
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({ template: './public/index.html' }),
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
}),
new BundleAnalyzerPlugin(),
new LodashModuleReplacementPlugin({ collections: true, paths: true }),
],
resolve: {
extensions: ['*', '.js', '.jsx'],
alias: {
'react-dom': '@hot-loader/react-dom',
},
},
optimization: {
minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
noEmitOnErrors: true,
splitChunks: {
chunks: 'all',
},
},
};