Patch Changes
-
#2755
10843aba
Thanks @natemoo-re! - Add user-configurablesitemapFilter
option.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
79fc3204
Thanks @FredKSchott! - update esbuild@0.14.25 -
#2758
499fb6a3
Thanks @natemoo-re! - Add CLI warnings when running a prerelease or outdated version of Astro -
#2743
a14075e2
Thanks @bholmesdev! - Fix - show 404 for bad static paths with console message, rather than a 500