-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvite.config.ts
106 lines (95 loc) · 3.01 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
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
import path from 'path'
import type { PluginOption } from 'vite'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import { VitePWA } from 'vite-plugin-pwa'
import compressionPlugin from 'vite-plugin-compression'
// import visualizer from 'rollup-plugin-visualizer';
function setupPlugins(env: ImportMetaEnv): PluginOption[] {
return [
vue(),
env.VITE_GLOB_APP_PWA === 'true' && VitePWA({
injectRegister: 'auto',
manifest: {
name: 'chatGPT',
short_name: 'chatGPT',
icons: [
{ src: 'pwa-192x192.png', sizes: '192x192', type: 'image/png' },
{ src: 'pwa-512x512.png', sizes: '512x512', type: 'image/png' },
],
},
}),
// 使用 Gzip 压缩插件
compressionPlugin({
ext: '.gz', // 输出文件扩展名(默认为 .gz)
algorithm: 'gzip', // 使用 Gzip 算法(默认为 'gzip',也可以设置为 'brotliCompress' 使用 Brotli 算法)
// 更多配置选项可参考:https://github.com/anncwb/vite-plugin-compression#readme
}),
]
}
export default defineConfig((env) => {
const viteEnv = loadEnv(env.mode, process.cwd()) as unknown as ImportMetaEnv
return {
resolve: {
alias: {
'@': path.resolve(process.cwd(), 'src'),
},
},
plugins: setupPlugins(viteEnv),
server: {
host: '0.0.0.0',
port: 1002,
open: false,
proxy: {
'/api': {
target: viteEnv.VITE_APP_API_BASE_URL,
changeOrigin: true, // 允许跨域
rewrite: path => path.replace('/api/', '/api/'),
},
},
},
build: {
reportCompressedSize: false,
sourcemap: false,
productionSourceMap: false,
commonjsOptions: {
ignoreTryCatch: false,
},
rollupOptions: {
// plugins: [
// // 使用 Visualizer 插件
// visualizer({
// open: true, // 构建完成后自动打开报告页面
// gzipSize: true, // 显示 Gzip 压缩后的大小
// filename: 'dist/stats.html', // 输出报告文件名
// }),
// ],
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
// 根据模块名称或路径进行拆分,例如:
if (id.includes('highlight'))
return 'highlight'
if (id.includes('naive-ui'))
return 'naive-ui'
if (id.includes('html2canvas'))
return 'html2canvas'
if (id.includes('katex'))
return 'katex'
if (id.includes('crypto-js'))
return 'crypto-js'
if (id.includes('@vue'))
return 'vue'
if (id.includes('markdown-it'))
return 'markdown-it'
if (id.includes('lodash-es'))
return 'lodash-es'
// 其他模块保留在 vendor chunk 中
return 'vendor'
}
},
},
},
},
}
})