14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
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 },
|
|
},
|
|
},
|
|
});
|