forked from buqiyuan/vue3-antdv-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
172 lines (167 loc) · 6.89 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
const webpack = require('webpack')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const CompressionPlugin = require("compression-webpack-plugin")
// 去除console
const UglifyJsPlugin = require('terser-webpack-plugin')
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const path = require('path')
const resolve = dir => path.join(__dirname, dir) // 路径
const querystring = require('querystring');
const isDev = process.env.NODE_ENV === 'development'
module.exports = {
// publicPath: isDev ? '' : querystring.unescape('<%=request.getContextPath()%>'),
// publicPath: '/vue3-antd',
// filenameHashing: false,
productionSourceMap: isDev,
css: {
requireModuleExtension: true, // 是否开启CSSmodule并保留xxx.module.css后缀
loaderOptions: {
less: {
javascriptEnabled: true
},
sass: {additionalData: `@import "@/styles/global.scss";`}
}
},
pluginOptions: {
// electronBuilder: {
// nodeIntegration: true,
// experimentalNativeDepCheck: true
// }
},
chainWebpack: config => {
// 配置相关loader,支持修改,添加和替换相关的loader
config.resolve.alias
.set('@', resolve('src'))
// 打包分析
if (!isDev) {
// config.plugin('webpack-report').use(BundleAnalyzerPlugin, [
// {
// analyzerMode: 'static'
// }
// ])
}
config
.plugin('html')
.tap(args => {
args[0].title = 'vue3-antd管理系统'
return args
})
// svg rule loader
config.module
.rule('svg')
.exclude.add(resolve('src/assets/icons'))
.end();
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/assets/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
});
},
configureWebpack: config => {
if (!isDev) {
config.plugins.push(
new UglifyJsPlugin({
terserOptions: {
warnings: false,
compress: {
drop_debugger: true, // 注释console
drop_console: true,
pure_funcs: ['console.log'] // 移除console
}
},
extractComments: false, // 是否将注释提取到一个单独的文件中
sourceMap: false,
parallel: true
}),
// new CompressionPlugin({
// /* [file]被替换为原始资产文件名。
// [path]替换为原始资产的路径。
// [dir]替换为原始资产的目录。
// [name]被替换为原始资产的文件名。
// [ext]替换为原始资产的扩展名。
// [query]被查询替换。*/
// filename: '[path].gz[query]',
// //压缩算法
// algorithm: 'gzip',
// //匹配文件
// test: /\.js$|\.css$|\.html$/,
// //压缩超过此大小的文件,以字节为单位
// threshold: 10240,
// minRatio: 0.8,
// //删除原始文件只保留压缩后的文件
// deleteOriginalAssets: true
// })
)
// config.plugins.push(new LodashModuleReplacementPlugin())
config.plugins.push(new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /zh-cn/))
// config.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/))
config.optimization = {
splitChunks: {
minSize: 1000000, // 单个文件的最小size
maxSize: 2000000, // 单个文件最大的size
minChunks: 2, // 最小被引用
maxAsyncRequests: 5, // 首页加载资源
maxInitialRequests: 3,
automaticNameDelimiter: '~', // 打包文件自定义的链接符
name: true,
chunks: 'async', // initial(初始块)、async(按需加载块)、all(默认,全部块)
// 这里需要注意的是如果使用initial 会将首页需要的依赖和项目本身的依赖打包2次增大文件体积
cacheGroups: {
default: false,
vendor: {
test(module) {
let path = module.resource
if (!path) return true
path = path.replace(/\\/g, '/')
const isNeed = path &&
/node_modules/.test(path) &&
/node_modules\/(?!ant-design-vue)/.test(path)
if (!isNeed && path.indexOf('node_modules') > -1) {
console.log('vendor not need::', path, isNeed)
}
return isNeed
},
name: 'chunk-vendors',
priority: 10,
enforce: true
},
vue: {
test(module) {
let path = module.resource
if (!path) return false
path = path.replace(/\\/g, '/')
// return path && path.indexOf('node_modules') > -1 && path.indexOf('vuetify') > -1
return path && /node_modules\/vue/.test(path)
},
name: 'chunk-vuetify',
priority: 9,
enforce: true
},
common: {
name: 'chunk-common',
minChunks: 2,
minSize: 30000
}
}
}
}
}
},
devServer: {
proxy: {
'/api': {
target: 'http://us-la-cn2.sakurafrp.com:59660',
// target: 'http://localhost:8080/BlackBox',
changeOrigin: true,
pathRewrite: {
'^/api': '/api/v1'
}
}
}
}
}