mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-27 07:44:48 +08:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
|
|
import { env } from "@/env";
|
||
|
|
|
||
|
|
export function getBackendBaseURL() {
|
||
|
|
return env.NEXT_PUBLIC_BACKEND_BASE_URL ?? "http://localhost:8000";
|
||
|
|
}
|