2026-05-26 00:33:02 +08:00
|
|
|
export const PRODUCTION_SITE_URL = "https://polyweather.top";
|
2026-05-24 18:33:47 +08:00
|
|
|
|
|
|
|
|
export function getConfiguredSiteUrl() {
|
|
|
|
|
const configured = process.env.NEXT_PUBLIC_SITE_URL?.trim();
|
|
|
|
|
if (configured) return configured;
|
|
|
|
|
return process.env.NODE_ENV === "production" ? PRODUCTION_SITE_URL : "";
|
|
|
|
|
}
|