fix(layout): use || instead of ?? so empty SITE_URL falls back to default
Deploy to route.crispygoat.com / deploy (push) Failing after 3m1s

This commit is contained in:
openclaw
2026-06-09 12:35:05 -06:00
parent 0f9ca2f331
commit cb0c9c8545
+1 -1
View File
@@ -5,7 +5,7 @@ import { Providers } from "@/components/Providers";
import ToastNotificationContainer from "@/components/notifications/ToastNotification";
import CookieConsentBanner from "@/components/legal/CookieConsentBanner";
const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://routecommerce.com";
const BASE_URL = process.env.NEXT_PUBLIC_SITE_URL || "https://routecommerce.com";
const fraunces = Fraunces({
subsets: ["latin"],