Files
xingrin/frontend/lib/env.ts
2025-12-29 18:09:57 +08:00

38 lines
1.1 KiB
TypeScript

/**
* Environment variables and runtime configuration utilities
*/
const DEFAULT_DEV_BACKEND_URL = 'http://localhost:8888'
const stripTrailingSlash = (url: string) => url.replace(/\/+$/, '')
/**
* Get backend base URL (used to bypass Next.js proxy, ensuring SSE and other long connections work)
*/
export function getBackendBaseUrl(): string {
const envUrl = process.env.NEXT_PUBLIC_BACKEND_URL?.trim()
if (envUrl) {
return stripTrailingSlash(envUrl)
}
if (typeof window !== 'undefined') {
const origin = window.location.origin
// In local development, backend runs on port 8888 by default
if (window.location.hostname === 'localhost' && window.location.port === '3000') {
return stripTrailingSlash(DEFAULT_DEV_BACKEND_URL)
}
return stripTrailingSlash(origin)
}
return stripTrailingSlash(DEFAULT_DEV_BACKEND_URL)
}
/**
* Build backend API URL (automatically handles extra slashes)
*/
export function buildBackendUrl(path: string): string {
const base = getBackendBaseUrl()
const normalizedPath = path.startsWith('/') ? path : `/${path}`
return `${base}${normalizedPath}`
}