astro 0.22.15
Patch Changes
-
#2371
85ad1aabThanks @natemoo-re! - Add support for styled RSS feeds using the newstylesheetoption -
#2416
5208c88aThanks @matthewp! - Adds Astro.resolve deprecation for the static build -
#2392
24aa3245Thanks @obnoxiousnerd! - Support markdown draft pages. Markdown draft pages are markdown pages which havedraftset in their frontmatter. By default, these will not be built by Astro while runningastro build. To disable this behavior, you need to setbuildOptions.draftstotrueor pass the--draftsflag while runningastro build. An exaple of a markdown draft page is:--- # src/pages/blog-post.md title: My Blog Post draft: true --- This is my blog post which is currently incomplete.