import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; export default defineConfig({ plugins: [react()], server: { host: true, // 0.0.0.0 — доступно с других устройств в LAN port: 5173, proxy: { // В dev фронт ходит на API через /api и /webhooks. CORS+credentials уже настроены, но прокси убирает cross-origin. '/api': { target: 'http://localhost:3030', changeOrigin: true }, '/webhooks': { target: 'http://localhost:3030', changeOrigin: true }, '/health': { target: 'http://localhost:3030', changeOrigin: true }, }, }, });