-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathvite.config.ts
81 lines (80 loc) · 2.18 KB
/
vite.config.ts
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
import { resolve } from 'path'
import { UserConfigExport, ConfigEnv } from 'vite'
import { viteMockServe } from 'vite-plugin-mock'
import viteCompression from 'vite-plugin-compression'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default ({ command }: ConfigEnv): UserConfigExport => {
const prodMock = true
return {
// base: '/',
base: command === 'serve' ? '/' : '/vue3-element-admin-ts/',
plugins: [
vue(),
viteCompression({
verbose: true, // 输出压缩结果
disable: false, // 是否禁用
threshold: 1024 * 30, // 体积大于 30kb 才会被压缩,单位 b
algorithm: 'gzip', // 压缩算法,可选 [ 'gzip' , 'brotliCompress' ,'deflate' , 'deflateRaw']
ext: '.gz' // 生成的压缩包后缀
}),
viteMockServe({
supportTs: true,
mockPath: 'mock',
localEnabled: command === 'serve',
prodEnabled: command !== 'serve' && prodMock,
injectCode: `
import { setupProdMockServer } from './mockProdServer';
setupProdMockServer();
`
})
],
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
'#': resolve(__dirname, 'src/@types')
}
},
css: {
preprocessorOptions: {
scss: {
additionalData: `@import "./src/styles/variables.scss";`
}
}
},
server: {
port: 3002,
open: false,
proxy: {
'/api': {
target: 'https://geo.datav.aliyun.com',
changeOrigin: true,
ws: true,
rewrite: (path) => path.replace(new RegExp('^/api'), '')
}
}
},
build: {
// sourcemap: true,
manifest: true,
minify: 'terser',
chunkSizeWarningLimit: 500, // 提高静态资源大小警告
terserOptions: {
// 清除console和debugger
compress: {
drop_console: true,
drop_debugger: true
}
},
rollupOptions: {
output: {
manualChunks: {
vue: ['vue', 'vue-router', 'vuex'],
'element-plus': ['element-plus'],
echarts: ['echarts']
}
}
}
}
}
}