From fda5c63420187e271ccfab6b9615682610a97422 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 10 Feb 2026 23:58:02 +0100 Subject: [PATCH] fix: explicit cast SITE_URL to string to unblock build --- lib/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/schema.ts b/lib/schema.ts index b4217cd4..b3d55466 100644 --- a/lib/schema.ts +++ b/lib/schema.ts @@ -1,6 +1,6 @@ import { config } from './config'; -export const SITE_URL = config.baseUrl || 'https://klz-cables.com'; +export const SITE_URL = (config.baseUrl as string) || 'https://klz-cables.com'; export const LOGO_URL = `${SITE_URL}/logo.png`; export const getOrganizationSchema = () => ({