-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.production.config.js
112 lines (110 loc) · 2.75 KB
/
webpack.production.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
const path = require("path");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const createMultipleEntryConfig = require("./scripts/createMultipleEntryConfig");
const friendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin");
const multipleEntryConfig = createMultipleEntryConfig();
console.log(multipleEntryConfig)
module.exports = {
entry: multipleEntryConfig.entries,
output: {
filename: "[name].[contenthash:8].js",
path: path.join(__dirname, "/dist"),
},
mode: "production",
module: {
rules: [
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
{
loader: "postcss-loader",
options: {
plugins: () => [
require("autoprefixer")({
browsers: ["last 2 version", "> 1%", "IOS 7"],
}),
],
},
},
],
},
{
test: /\.less$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"less-loader",
{
loader: "postcss-loader",
options: {
postcssOptions: () => [
require("autoprefixer")({
overrideBrowserslist: ["last 2 version", "> 1%", "IOS 7"],
}),
],
},
},
],
},
{
test: /\.(jpeg|jpg|png|webp|gif|gif_jpeg|gif_png|gif_jpg|gif_webp|svg)$/,
use: {
loader: "url-loader",
options: {
limit: 15000,
name: "images/[name].[hash:8].[ext]",
},
},
},
{
test: /\.jsx?$/,
use: "babel-loader",
},
],
},
resolve: {
alias: {
public: path.join(__dirname, "/public"),
},
},
optimization: {
splitChunks: {
chunks: "all",
name: "vendors",
minSize: 10000,
minRemainingSize: 0,
minChunks: 1,
maxAsyncRequests: 5,
maxInitialRequests: 30,
enforceSizeThreshold: 50000,
cacheGroups: {
defaultVendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10,
reuseExistingChunk: true,
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true,
},
},
},
},
stats: "errors-only",
plugins: [
new CleanWebpackPlugin(),
...multipleEntryConfig.plugins,
new MiniCssExtractPlugin({
filename: "[name].[contenthash:8].css",
}),
new CssMinimizerPlugin({
include: /\.css$/,
}),
new friendlyErrorsWebpackPlugin(),
],
};