Spaces:
Sleeping
Sleeping
File size: 388 Bytes
4bd4c03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /**
* Get the base URL for auth redirects.
* Uses NEXT_PUBLIC_SITE_URL in production, falls back to window.location.origin for local dev.
*/
export function getBaseUrl(): string {
if (process.env.NEXT_PUBLIC_SITE_URL) {
return process.env.NEXT_PUBLIC_SITE_URL;
}
if (typeof window !== "undefined") {
return window.location.origin;
}
return "http://localhost:3000";
}
|