diff options
Diffstat (limited to '.changeset/neat-tigers-float.md')
-rw-r--r-- | .changeset/neat-tigers-float.md | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.changeset/neat-tigers-float.md b/.changeset/neat-tigers-float.md deleted file mode 100644 index 10326f6fe..000000000 --- a/.changeset/neat-tigers-float.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'@astrojs/sitemap': minor ---- - -Customize the filenames of sitemap XML files generated by the `@astro/sitemap` integration by setting `filenameBase` in the integration configuration settings. This may be useful when deploying an Astro site at a path on a domain with preexisting sitemap files. - -Generated sitemap files will appear at `/sitemap-0.xml` and `/sitemap-index.xml` by default, which may conflict with preexisting files. Set `filenameBase` to a custom value to avoid that if so: - -```js - import { defineConfig } from 'astro/config'; - import sitemap from '@astrojs/sitemap'; - - export default defineConfig({ - site: 'https://example.com', - integrations: [ - sitemap({ - filenameBase: 'astronomy-sitemap', - }), - ], - }); -``` - -This will yield sitemap and index files as `https://example.com/astronomy-sitemap-0.xml` and `https://example.com/astronomy-sitemap-index.xml`. |