diff options
Diffstat (limited to 'www/src/pages/blog')
-rw-r--r-- | www/src/pages/blog/[slug].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/src/pages/blog/[slug].astro b/www/src/pages/blog/[slug].astro index bdf35d1e5..95c1230d0 100644 --- a/www/src/pages/blog/[slug].astro +++ b/www/src/pages/blog/[slug].astro @@ -17,7 +17,7 @@ const { Content, title, author, description, publishDate, heroImage, heroImageAl <html lang={lang ?? 'en'}> <head> - <BaseHead title={title} description={description} canonicalURL={permalink} image={socialImage} /> + <BaseHead title={title} description={description} canonicalURL={permalink} image={socialImage && `https://astro.build${socialImage}`} /> <link rel="stylesheet" href={Astro.resolve('../../scss/blog.scss')} /> </head> <body> |