Adds gateway and console URL configuration in app/lib/config.ts, centralizing endpoint URLs with env var overrides. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2 lines
180 B
TypeScript
2 lines
180 B
TypeScript
export const GATEWAY_URL = process.env.NEXT_PUBLIC_GATEWAY_URL ?? "http://localhost:3000"
|
|
export const CONSOLE_URL = process.env.NEXT_PUBLIC_CONSOLE_URL ?? "http://localhost:4000"
|