astro 0.24.0-next.2
Patch Changes
-
#2755
10843abaThanks @natemoo-re! - Add user-configurablesitemapFilteroption.This option can be used to ensure certain pages are excluded from your final sitemap.
// astro.config.ts import type { AstroUserConfig } from 'astro' const config: AstroUserConfig = { sitemap: true, sitemapFilter: (page: string) => !page.includes('secret-page') } export default config -
#2750
79fc3204Thanks @FredKSchott! - update esbuild@0.14.25 -
#2758
499fb6a3Thanks @natemoo-re! - Add CLI warnings when running a prerelease or outdated version of Astro -
#2743
a14075e2Thanks @bholmesdev! - Fix - show 404 for bad static paths with console message, rather than a 500