-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvite.config.ts
More file actions
69 lines (62 loc) · 1.46 KB
/
vite.config.ts
File metadata and controls
69 lines (62 loc) · 1.46 KB
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
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
// 自动导入 Vue 相关函数
AutoImport({
imports: ['vue', 'vue-router', 'pinia'],
dts: 'src/auto-imports.d.ts',
}),
// 自动导入 Ant Design Vue 组件
Components({
resolvers: [
AntDesignVueResolver({
importStyle: false, // css in js
}),
],
dts: 'src/components.d.ts',
}),
],
// 路径别名
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
},
},
// Tauri 配置
clearScreen: false,
server: {
port: 1420,
strictPort: true,
watch: {
ignored: ['**/src-tauri/**'],
},
},
// 构建优化
build: {
target: 'esnext',
minify: 'esbuild',
rollupOptions: {
output: {
manualChunks: {
'vue-vendor': ['vue', 'vue-router', 'pinia'],
'ant-design': ['ant-design-vue', '@ant-design/icons-vue'],
'monaco-editor': ['monaco-editor'],
},
},
},
},
// Monaco Editor worker 配置
define: {
global: 'globalThis',
},
optimizeDeps: {
include: ['monaco-editor/esm/vs/language/typescript/ts.worker'],
},
})