mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
7 lines
260 B
TypeScript
7 lines
260 B
TypeScript
/** Base URL for Dealix FastAPI (browser + server). */
|
|
export function getApiBaseUrl(): string {
|
|
const fromEnv =
|
|
(typeof process !== "undefined" && process.env.NEXT_PUBLIC_API_URL) || "";
|
|
return fromEnv.replace(/\/$/, "") || "http://127.0.0.1:8000";
|
|
}
|