diff --git a/blog/src/components/BaseHead.astro b/blog/src/components/BaseHead.astro index 5d52c095..9e30d66b 100644 --- a/blog/src/components/BaseHead.astro +++ b/blog/src/components/BaseHead.astro @@ -7,7 +7,7 @@ interface Props { image?: string; } -const canonicalURL = new URL(Astro.url.pathname + '/index.html', Astro.site); +const canonicalURL = new URL(Astro.url.pathname + 'index.html', Astro.site); const { title, description, image = '/og-image.png' } = Astro.props;