Files
deer-flow/frontend/src/core/config/index.ts

6 lines
140 B
TypeScript
Raw Normal View History

2026-01-19 11:23:40 +08:00
import { env } from "@/env";
export function getBackendBaseURL() {
return env.NEXT_PUBLIC_BACKEND_BASE_URL ?? "http://localhost:8000";
}