1
0

Initial commit

This commit is contained in:
2026-05-19 16:09:55 +10:00
commit 13caeb482b
11 changed files with 3687 additions and 0 deletions

16
vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
const unrealRemoteUrl = process.env.UNREAL_REMOTE_URL ?? "http://127.0.0.1:30010";
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/remote": {
target: unrealRemoteUrl,
changeOrigin: true,
},
},
},
});