diff options
Diffstat (limited to 'examples/blog-multiple-authors/src/components/MainHead.astro')
-rw-r--r-- | examples/blog-multiple-authors/src/components/MainHead.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog-multiple-authors/src/components/MainHead.astro b/examples/blog-multiple-authors/src/components/MainHead.astro index 0392f6d94..c780d24c3 100644 --- a/examples/blog-multiple-authors/src/components/MainHead.astro +++ b/examples/blog-multiple-authors/src/components/MainHead.astro @@ -6,7 +6,7 @@ export interface Props { type?: string; next?: string; prev?: string; - canonicalURL?: string; + canonicalURL?: string | URL; } const { title, description, image, type, next, prev, canonicalURL } = Astro.props as Props; |