diff options
Diffstat (limited to 'packages')
-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 |