diff options
author | 2022-03-29 07:35:03 -0400 | |
---|---|---|
committer | 2022-03-29 07:35:03 -0400 | |
commit | ecc6a4833f68eaf78bd5d619ff7c54b952c96b15 (patch) | |
tree | 95175d87fd2002ab441a968970512a1293c48874 /examples/docs | |
parent | 030fd48bdd917206f32c78c88a3fe2a2d9191101 (diff) | |
download | astro-ecc6a4833f68eaf78bd5d619ff7c54b952c96b15.tar.gz astro-ecc6a4833f68eaf78bd5d619ff7c54b952c96b15.tar.zst astro-ecc6a4833f68eaf78bd5d619ff7c54b952c96b15.zip |
Implement the Astro.request RFC (#2913)
* Implement the Astro.request RFC
* Disable console warnings eslint
* Use our logger
* Adds a changeset
* Fix tests that depend on params, canonicalURL, URL
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/docs')
-rw-r--r-- | examples/docs/src/layouts/MainLayout.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/layouts/MainLayout.astro b/examples/docs/src/layouts/MainLayout.astro index 92e0bcf44..8c46278fe 100644 --- a/examples/docs/src/layouts/MainLayout.astro +++ b/examples/docs/src/layouts/MainLayout.astro @@ -17,7 +17,7 @@ const githubEditUrl = CONFIG.GITHUB_EDIT_URL && CONFIG.GITHUB_EDIT_URL + current <html dir={content.dir ?? 'ltr'} lang={content.lang ?? 'en-us'} class="initial"> <head> <HeadCommon /> - <HeadSEO {content} canonicalURL={Astro.request.canonicalURL} /> + <HeadSEO {content} canonicalURL={Astro.canonicalURL} /> <title>{content.title ? `${content.title} 🚀 ${CONFIG.SITE.title}` : CONFIG.SITE.title}</title> <style> body { |