Files
chat_messenge_app/apps/web/vite.config.ts
T
2026-04-13 13:59:26 -04:00

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 },
},
},
});