From 197e40bc2c27be2b44b79852386c9d7ae3e1d389 Mon Sep 17 00:00:00 2001 From: GoHorse Deploy Date: Sat, 7 Feb 2026 15:37:12 +0000 Subject: [PATCH] fix: change default API URL to /api/v1 --- frontend/src/contexts/ConfigContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/contexts/ConfigContext.tsx b/frontend/src/contexts/ConfigContext.tsx index 63af8e1..58bb362 100644 --- a/frontend/src/contexts/ConfigContext.tsx +++ b/frontend/src/contexts/ConfigContext.tsx @@ -10,7 +10,7 @@ export interface RuntimeConfig { } const defaultConfig: RuntimeConfig = { - apiUrl: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8521', + apiUrl: process.env.NEXT_PUBLIC_API_URL || '/api/v1', backofficeUrl: process.env.NEXT_PUBLIC_BACKOFFICE_URL || 'http://localhost:3001', seederApiUrl: process.env.NEXT_PUBLIC_SEEDER_API_URL || 'http://localhost:3002', scraperApiUrl: process.env.NEXT_PUBLIC_SCRAPER_API_URL || 'http://localhost:3003',