Files
solo-company-feed/lib/site.ts
爱喝水的木子 bfdf4843e1 OPC
2026-03-13 16:28:51 +08:00

7 lines
261 B
TypeScript

export function getSiteUrl(): string {
const raw = process.env.NEXT_PUBLIC_SITE_URL || process.env.SITE_URL;
const fallback = "http://localhost:3000";
const base = raw && raw.trim().length > 0 ? raw.trim() : fallback;
return base.replace(/\/+$/, "");
}