forked from usememos/memos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
45 lines (43 loc) · 1.01 KB
/
vite.config.ts
File metadata and controls
45 lines (43 loc) · 1.01 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
import react from "@vitejs/plugin-react";
import { resolve } from "path";
import { defineConfig } from "vite";
let devProxyServer = "http://localhost:8081";
if (process.env.DEV_PROXY_SERVER && process.env.DEV_PROXY_SERVER.length > 0) {
console.log("Use devProxyServer from environment: ", process.env.DEV_PROXY_SERVER);
devProxyServer = process.env.DEV_PROXY_SERVER;
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: "0.0.0.0",
port: 3001,
proxy: {
"^/api": {
target: devProxyServer,
xfwd: true,
},
"^/memos.api.v1": {
target: devProxyServer,
xfwd: true,
},
"^/file": {
target: devProxyServer,
xfwd: true,
},
"^/u/.+/rss.xml": {
target: devProxyServer,
xfwd: true,
},
"^/explore/rss.xml": {
target: devProxyServer,
xfwd: true,
},
},
},
resolve: {
alias: {
"@/": `${resolve(__dirname, "src")}/`,
},
},
});