import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], build: { outDir: 'dist', }, server: { port: 5173, proxy: { '/chat': 'http://192.168.0.205:4000', '/sessions': 'http://192.168.0.205:4000', }, }, });