From 5203f27b67325c7e56865168904f5491691e9d18 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Mon, 22 Jan 2024 13:54:20 +0100 Subject: [PATCH] fix: resolve hostname without double protocol --- src/lib/config/site.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/config/site.ts b/src/lib/config/site.ts index a6e8225..d9136e8 100644 --- a/src/lib/config/site.ts +++ b/src/lib/config/site.ts @@ -1,5 +1,5 @@ const SITE_URL = - import.meta.env.VERCEL_ENV === 'preview' ? import.meta.env.VERCEL_URL : 'https://hellob.art'; + import.meta.env.VERCEL_ENV === 'preview' ? import.meta.env.VERCEL_URL : 'hellob.art'; export const siteConfig = { name: 'hellob.art',