-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
74 lines (70 loc) · 2.43 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
// Production mode
const path = require("path");
const common = require("./webpack.common");
const {merge} = require('webpack-merge');
const {CleanWebpackPlugin} = require('clean-webpack-plugin'); // Removes old files and injects new ones to html
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); // Minifies css when app is ready for production
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserPlugin = require("terser-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ImageminPlugin = require('imagemin-webpack-plugin').default;
const glob = require('glob');
module.exports = merge(common, {
mode: "production",
output: {
filename: "bundle.[contenthash].js",
path: path.resolve(__dirname, "dist"),
assetModuleFilename: 'images/[hash][ext][query]',
clean: true,
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all',
},
},
},
minimizer: [
new OptimizeCssAssetsPlugin(),// minifies css files and accidentally js files too
new TerserPlugin(), //minifies js files again
new HtmlWebpackPlugin({ //minifies html files, but only in production
template: "src/template.html",
minify: {
removeAttributeQuotes: true,
collapseWhitespace: true,
removeComments: true
}
})
]
},
plugins: [
new ImageminPlugin({
pngquant: {
quality: '40-50'
},
externalImages: {
context: '.',
sources: glob.sync('src/images/**/*.{png,jpg,jpeg,gif,svg}'),
destination: 'dist/images',
fileName: '[name].[ext]',
clean: true,
}
}),
new MiniCssExtractPlugin({ filename: "[name].[contenthash].css" }),
new CleanWebpackPlugin(),
],
module: {
rules: [
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader, //2. Extract css into files
"css-loader" //1. Turns css into commonjs
]
},
]
},
});