-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.config.js
66 lines (65 loc) · 1.57 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
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
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CompressionPlugin = require('compression-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSS = require('css-minimizer-webpack-plugin');
const { merge } = require('webpack-merge');
const path = require('path');
const Dotenv = require('dotenv-webpack');
const common = require('./webpack.common');
module.exports = merge(common, {
mode: 'production',
output: {
filename: 'index.[contenthash].js',
chunkFilename: '[name].[contenthash].pkg.js',
path: path.resolve(__dirname, 'dist'),
},
optimization: {
minimizer: ['...', new OptimizeCSS()],
},
plugins: [
new CleanWebpackPlugin(),
new CompressionPlugin(),
new HtmlWebpackPlugin({
favicon: 'src/assets/images/favicons/favicon.ico',
filename: 'index.html',
template: 'src/html/index.html',
minify: {
removeAttributeQuotes: true,
removeComments: true,
removeTagWhitespace: true,
collapseWhitespace: true,
},
}),
new MiniCssExtractPlugin({ filename: 'index.[contenthash].css' }),
new Dotenv({
path: './.env',
safe: false,
allowEmptyValues: true,
silent: false,
}),
],
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.less$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
{
loader: 'less-loader',
options: {
lessOptions: {
javascriptEnabled: true,
},
},
},
],
},
],
},
});