diff options
author | 2023-07-21 09:59:23 -0300 | |
---|---|---|
committer | 2023-07-21 09:59:23 -0300 | |
commit | 29162c99fb9175076b2d0f6261f087c1381517b5 (patch) | |
tree | 37e8854e3a8286a2b14999ed1773798140519cc7 | |
parent | bad65877a57b78d310f90b0f4e2912f220883e4f (diff) | |
download | astro-29162c99fb9175076b2d0f6261f087c1381517b5.tar.gz astro-29162c99fb9175076b2d0f6261f087c1381517b5.tar.zst astro-29162c99fb9175076b2d0f6261f087c1381517b5.zip |
[docs] @astrojs/sitemap README update (#7748)
-rw-r--r-- | packages/integrations/sitemap/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/integrations/sitemap/README.md b/packages/integrations/sitemap/README.md index e8b5a0128..346ec54c9 100644 --- a/packages/integrations/sitemap/README.md +++ b/packages/integrations/sitemap/README.md @@ -17,7 +17,9 @@ A Sitemap is an XML file that outlines all of the pages, videos, and files on yo A sitemap file is recommended for large multi-page sites. If you don't use a sitemap, most search engines will still be able to list your site's pages, but a sitemap is a great way to ensure that your site is as search engine friendly as possible. -With Astro Sitemap, you don't have to worry about creating this file: build your Astro site how you normally would, and the Astro Sitemap integration will crawl your routes and create the sitemap file. +With Astro Sitemap, you don't have to worry about creating this XML file yourself: the Astro Sitemap integration will crawl your statically-generated routes and create the sitemap file, including [dynamic routes](https://docs.astro.build/en/core-concepts/routing/#dynamic-routes) like `[...slug]` or `src/pages/[lang]/[version]/info.astro` generated by `getStaticPaths()`. + +This integration cannot generate sitemap entries for dynamic routes in [SSR mode](https://docs.astro.build/en/guides/server-side-rendering/). ## Installation |