From 4934454a8b738356117e28e7b2259954f032f266 Mon Sep 17 00:00:00 2001 From: Ivo Pauly <2779143+ivopauly@users.noreply.github.com> Date: Thu, 15 Dec 2022 08:30:09 +0100 Subject: [PATCH] Add missing required alt property for GetImageTransform --- src/components/core/MetaTags.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/core/MetaTags.astro b/src/components/core/MetaTags.astro index 66c55d3..378bdf2 100644 --- a/src/components/core/MetaTags.astro +++ b/src/components/core/MetaTags.astro @@ -13,6 +13,7 @@ import SplitbeeAnalytics from './SplitbeeAnalytics.astro'; const { src: defaultImage } = await getImage({ src: defaultImageSrc, + alt: 'Default image', width: 1200, height: 628, });