fix: explicit cast SITE_URL to string to unblock build
Some checks failed
Some checks failed
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { config } from './config';
|
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 LOGO_URL = `${SITE_URL}/logo.png`;
|
||||||
|
|
||||||
export const getOrganizationSchema = () => ({
|
export const getOrganizationSchema = () => ({
|
||||||
|
|||||||
Reference in New Issue
Block a user