diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index f9468e7..9a6b971 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -18,7 +18,7 @@ const { } = Astro.props; const title = `${titleProp ? `${titleProp} - ` : ''}Cats Of Tech`; -const imageUrl = image ? new URL(image, Astro.site) : null; +const imageUrl = image ? new URL(image, Astro.url) : null; ---