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',