-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvue.config.js
119 lines (114 loc) · 4.4 KB
/
vue.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
113
114
115
116
117
118
119
/*
* @Author: your name
* @Date: 2020-10-14 15:24:16
* @LastEditTime: 2022-01-20 11:38:21
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \vue3-element-admin\vue.config.js
*/
const config = require("./src/config");
const webpack = require("webpack");
const TerserPlugin = require("terser-webpack-plugin");
const CompressionWebpackPlugin = require("compression-webpack-plugin");
let scssVariables = require("./src/styles/variables.scss.js");
module.exports = {
publicPath: "",
productionSourceMap: false,
devServer: {
setupMiddlewares: (middlewares, devServer) => {
if (config.dev_mock) {
const mock_server = require("./src/api/mock-server.js");
mock_server(devServer.app);
}
return middlewares;
},
},
chainWebpack: (config) => {
config.plugin("provide").use(webpack.ProvidePlugin, [
{
XE: "xe-utils",
},
]);
config.plugin("define").use(webpack.DefinePlugin, [
{
VE_ENV: {
MODE: JSON.stringify(process.env.NODE_ENV),
},
},
]);
config.plugins.delete("prefetch");
// config.plugins.delete("preload");
// config.optimization.delete("splitChunks");
},
configureWebpack: () => {
let baseConfig = {};
let envConfig = {};
if (process.env.NODE_ENV === "production") {
// 为生产环境修改配置...
envConfig = {
optimization: {
splitChunks: {
chunks: "all",
// enforceSizeThreshold: 20000,
cacheGroups: {
echarts: {
name: "chunk-echarts",
priority: 20,
test: /[\\/]node_modules[\\/]_?echarts(.*)/,
},
elementPlus: {
name: "chunk-elementPlus",
priority: 20,
test: /[\\/]node_modules[\\/]_?element-plus(.*)/,
},
elementPlusIcon: {
name: "chunk-elementPlusIcon",
priority: 20,
test: /[\\/]node_modules[\\/]_?@element-plus[\\/]icons(.*)/,
},
mockjs: {
name: "chunk-mockjs",
priority: 20,
test: /[\\/]node_modules[\\/]_?mockjs(.*)/,
},
},
},
},
externals: {
// lodash: "_"
},
plugins: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
},
},
}),
new CompressionWebpackPlugin({
filename: "[path][base].gz",
algorithm: "gzip",
// test: /\.js$|\.html$|\.json$|\.css/,
test: /\.js$|\.json$|\.css/,
threshold: 10240, // 只有大小大于该值的资源会被处理
minRatio: 0.8, // 只有压缩率小于这个值的资源才会被处理
// deleteOriginalAssets: true // 删除原文件
}),
],
};
}
return Object.assign(baseConfig, envConfig);
},
css: {
loaderOptions: {
scss: {
// 注意:在 sass-loader v8 中,这个选项名是 "prependData"
// additionalData: `@import "~@/styles/imports.scss";`
additionalData: Object.keys(scssVariables)
.map((k) => `$${k.replace("_", "-")}: ${scssVariables[k]};`)
.join("\n"),
},
},
},
};