-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
39 lines (37 loc) · 1.03 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
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import checker from "vite-plugin-checker";
// https://vitejs.dev/config/
export default defineConfig({
server: {
proxy: {
// TODO: for dev only, workaround for CORS
// Seperate API into two routing, because in China bigquery is not accessible
"^/dev/(langrepos|langmilestone|querytip|chatgpt)": {
target: "<Your aws deploy URL>",
changeOrigin: true,
secure: false,
// rewrite: (path) => path.replace(/^\/api/, ""),
},
"^/dev/(login|modifyuserinfo|signup|subscribetopic|getuserinfo|resetpass)":
{
target: "<Your local URL>",
changeOrigin: true,
secure: false,
// rewrite: (path) => path.replace(/^\/api/, ""),
},
},
},
plugins: [
vue(),
checker({
typescript: true,
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});