forked from tychozzz/gpt-web-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
32 lines (31 loc) · 827 Bytes
/
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
import { defineConfig, loadEnv } from "vite";
import vue from "@vitejs/plugin-vue";
// @ts-ignore
import Components from "unplugin-vue-components/vite";
// @ts-ignore
import { AntDesignVueResolver } from "unplugin-vue-components/resolvers";
// https://vitejs.dev/config/
export default defineConfig((env) => {
const viteEnv = loadEnv(env.mode, process.cwd())
return {
plugins: [
vue(),
// 按需加载 ant-design-vue
Components({
resolvers: [AntDesignVueResolver()],
}),
].filter(Boolean),
server: {
host: '0.0.0.0',
port: 3001,
open: false,
proxy: {
'/api': {
target: viteEnv.VITE_APP_API_BASE_URL,
changeOrigin: true, // 允许跨域
rewrite: path => path.replace('/api/', '/'),
},
},
},
};
});