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

10 lines
208 B
TypeScript
Raw Normal View History

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