-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
53 lines (50 loc) · 1.27 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
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react-swc";
import { createHtmlPlugin } from "vite-plugin-html";
import legacy from "@vitejs/plugin-legacy";
export default ({ mode }) => {
let devEnv = "";
const env = Object.assign(
globalThis.process.env,
loadEnv(mode, globalThis.process.cwd()),
);
if (mode === "development") {
devEnv = `
<script>
var DEBUG = "${env.VITE_DEBUG}" === 'true';
var DEBUG_HOST = "${env.VITE_DEBUG_HOST}";
var DEBUG_PORT = "${env.VITE_DEBUG_MDS_PORT}";
var DEBUG_UID = "${env.VITE_DEBUG_UID}";
</script>
`;
}
return defineConfig({
base: "",
build: {
outDir: "build",
},
plugins: [
react(),
legacy({
targets: ["defaults", "not IE 11", "Android >= 9"],
}),
createHtmlPlugin({
inject: {
data: {
devEnv,
},
},
}),
],
server: {
proxy: {
// Proxy API requests from React dev server to Node.js proxy on port 3000
"/api": {
target: "http://localhost:3000", // Proxy server URL
changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ""), // Remove "/api" prefix
},
},
},
});
};