-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.config.js
37 lines (36 loc) · 1.14 KB
/
webpack.prod.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
const config = require("./webpack.config");
const merge = require("webpack-merge");
const MiniCssWebpackPlugin = require("mini-css-extract-plugin");
const optimize = require('optimize-css-assets-webpack-plugin');
const Terser = require('terser-webpack-plugin');
const htmlWebpackPlugin = require("html-webpack-plugin");
module.exports = merge(config, {
mode: "production",
plugins: [new MiniCssWebpackPlugin({ filename: "[name].[contentHash].css" })],
module: {
rules: [
{
test: /\.css$/,
use: [MiniCssWebpackPlugin.loader, "css-loader"]
},
{
test: /\.s[a|c]ss$/,
use: [MiniCssWebpackPlugin.loader, "css-loader", "sass-loader"]
}
]
},
optimization: {
minimizer: [
new optimize(),
new Terser(),
new htmlWebpackPlugin({
template: "./src/index.html",
minify: {
removeAttributeQuotes: true,
collapseWhitespace: true,
removeComments: true
}
})
]
}
});