import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import tailwindcss from '@tailwindcss/vite'; export default defineConfig({ plugins: [react(), tailwindcss()], server: { port: 5174, allowedHosts: true, proxy: { '/api': { target: 'http://localhost:4010', changeOrigin: true }, '/socket.io': { target: 'http://localhost:4010', changeOrigin: true, ws: true } } } });