create-jaydee-app
Version:
This is a project created with Create Jaydee App.
7 lines (6 loc) • 310 B
text/typescript
export default function getBaseUrl() {
if (typeof window !== "undefined") return window.location.origin;
if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`;
if (process.env.BASE_URL) return `https://${process.env.BASE_URL}`;
return `http://localhost:${process.env.PORT ?? 3000}`;
}