diff options
Diffstat (limited to 'examples/blog/src/pages/index.astro')
-rw-r--r-- | examples/blog/src/pages/index.astro | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro index 2af3a1a03..19ea4ebf9 100644 --- a/examples/blog/src/pages/index.astro +++ b/examples/blog/src/pages/index.astro @@ -21,7 +21,11 @@ let firstThree = allPosts.slice(0, 3); <html> <head> <title>{title}</title> - <MainHead title={title} description={description} /> + <MainHead + title={title} + description={description} + canonicalURL={Astro.request.canonicalURL.href} + /> </head> <body> |