Files
telegram-like-messenger/apps/web/vite.config.ts
T
root 9494f85b78
CI / schema-and-codegen (push) Failing after 29s
Initial commit
2026-06-20 03:54:40 -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 },
},
},
});