-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
59 lines (57 loc) · 1.82 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
import { defineConfig, loadEnv } from "vite";
import Icons from "unplugin-icons/vite";
import React from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd());
const apiUrl = env.VITE_API_URL || "/api";
return {
server: {
host: "0.0.0.0",
proxy: {
"/api": {
target: apiUrl,
changeOrigin: true,
configure: (proxy, _options) => {
proxy.on("error", (_err, _req, res) => {
if (res && !res.headersSent) {
res.writeHead(502, {
"Content-Type": "application/json",
});
res.end(
JSON.stringify({
error: "backend offline",
})
);
}
});
},
},
"^/api/pods/.+/wsrx": {
target: apiUrl.replace("http", "ws"),
ws: true,
},
"/metrics": {
target: apiUrl,
changeOrigin: true,
},
},
},
plugins: [
React({
jsxImportSource: "@emotion/react",
}),
Icons({
compiler: "jsx",
jsx: "react",
scale: 1.2,
defaultClass: "iconify",
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
};
});