From 958285bf52ebaddc985ad98ecc12d68423d81143 Mon Sep 17 00:00:00 2001 From: Helen Zeng Date: Fri, 31 Oct 2025 17:08:27 -0700 Subject: [PATCH] Change proxy target from localhost to 127.0.0.1 Updated proxy targets to use 127.0.0.1 instead of localhost. --- agentic_ai/workflow/fraud_detection/ui/vite.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agentic_ai/workflow/fraud_detection/ui/vite.config.js b/agentic_ai/workflow/fraud_detection/ui/vite.config.js index 0f940b95c..d11d6ca03 100644 --- a/agentic_ai/workflow/fraud_detection/ui/vite.config.js +++ b/agentic_ai/workflow/fraud_detection/ui/vite.config.js @@ -7,11 +7,11 @@ export default defineConfig({ port: 3000, proxy: { '/api': { - target: 'http://localhost:8001', + target: 'http://127.0.0.1:8001', changeOrigin: true, }, '/ws': { - target: 'ws://localhost:8001', + target: 'ws://127.0.0.1:8001', ws: true, }, },