forked from bailichen/vue-weixin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.config.js
44 lines (38 loc) · 1.18 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
const path = require('path');
const baseCfg = require('./webpack.base.config');
const merge = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = merge(baseCfg, {
mode: 'production',
output: {
path: path.resolve('dist'),
filename: 'static/[name].[contenthash].js',
chunkFilename: 'static/[name].[contenthash].js'
},
devtool: "cheap-module-map",
plugins: [
new CleanWebpackPlugin(['dist'], {
root: path.resolve('./')
}),
new MiniCssExtractPlugin({
filename: 'static/[name].[contenthash].css'
}),
],
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
sourceMap: false
}),
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: {
safe: true
},
})
]
}
})