-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
61 lines (59 loc) · 1.79 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
import { fileURLToPath, URL } from 'node:url'
import Components from 'unplugin-vue-components/vite'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import VueDevTools from 'vite-plugin-vue-devtools'
import { VantResolver } from "unplugin-vue-components/resolvers";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
// VueDevTools(),
Components({
// 指定组件位置,默认是src/components
dirs: ['src'],
// 组件的有效文件扩展名。
extensions: ["vue"],
// 搜索子目录
deep: true,
// ui库解析器,也可以自定义
// resolvers: [VantResolver()],
// 配置文件生成位置
dts: 'src/components.d.ts',
resolvers: [VantResolver()],
})
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
base:'./'
// server: {
// // http://localhost:5173/api/login -> http://www.test.com/login
// proxy: {
// //api是自行设置的请求前缀,任何请求路径以/api开头的请求将被代理到对应的target目标
// '/generate': {
// target:'http://8.149.139.56:8388', //目标域名
// changeOrigin: true, //需要代理跨域
// // rewrite: (path) => path.replace(/^\/generate/, ''), //路径重写,把'/api'替换为''
// },
// },
// },
// server: {
// proxy: {
// // 匹配路径规则
// '/api': {
// // 目标地址
// target: 'http://8.149.139.56:8388/',
// // 是否重写路径
// rewrite: (path) => path.replace(/^\/api/, ''),
// // 是否启用 WebSocket 代理
// ws: true,
// // 是否跨域
// changeOrigin: true,
// // 其他选项...
// }
// }
// }
})