Initial commit
CI / schema-and-codegen (push) Failing after 29s

This commit is contained in:
root
2026-06-20 03:54:40 -04:00
commit 9494f85b78
57 changed files with 3324 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/graphql": { target: "http://127.0.0.1:4000", changeOrigin: true, ws: true },
"/signal": { target: "ws://127.0.0.1:4000", ws: true },
},
},
});