From 133ea165da859de0ecb2eddf7c5c6b91d6521480 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Thu, 25 May 2023 11:46:38 +0200 Subject: [PATCH] Change og:image property on head add main cover image --- src/components/Head.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Head.astro b/src/components/Head.astro index 86ae034..4203cb9 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -1,7 +1,7 @@ --- const { title, description, ogImage = "" } = Astro.props; -const imageUrl = ogImage.replace("localhost:3000", "aurora.thilohohlt.com"); +const imageUrl = "https://aurora.thilohohlt.com" + ogImage; ---