diff --git a/astro.config.ts b/astro.config.ts index fcf13e786ff74b..91ddced3bfd66e 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -137,6 +137,11 @@ export default defineConfig({ }), icon(), sitemap({ + filter(page) { + return !page.startsWith( + "https://developers.cloudflare.com/style-guide/", + ); + }, serialize(item) { item.lastmod = new Date().toISOString(); return item;