diff --git a/packages/ui/vite.config.ts b/packages/ui/vite.config.ts index ee9a06358..7659b7ea3 100644 --- a/packages/ui/vite.config.ts +++ b/packages/ui/vite.config.ts @@ -5,8 +5,11 @@ export default defineConfig({ plugins: [react()], server: { port: 3001, + allowedHosts: ['pilot.landvex.com', 'localhost'], proxy: { - '/api': 'http://localhost:3000' + '/api': 'http://localhost:3002', + '/version': 'http://localhost:3002', + '/health': 'http://localhost:3002' } } });