diff options
author | 2022-01-20 01:48:51 +0530 | |
---|---|---|
committer | 2022-01-19 15:18:51 -0500 | |
commit | 24aa3245aef4e12a80946c6d56f731b14aed6220 (patch) | |
tree | 711c1a02b881675fafa00ad79d8e53c2187f69da /docs/src/pages/en/reference | |
parent | 9278ecdc4cd71cd0ae7b57adad8ddae26b66f1d2 (diff) | |
download | astro-24aa3245aef4e12a80946c6d56f731b14aed6220.tar.gz astro-24aa3245aef4e12a80946c6d56f731b14aed6220.tar.zst astro-24aa3245aef4e12a80946c6d56f731b14aed6220.zip |
Implement support for draft pages (#2392)
* feat: support draft pages
* implemented support for draft pages
* added integration test
* updated relevant documentation (english only)
* docs: explicitly mention "markdown draft pages"
* chore: add changeset
* chore: modify changeset
- changed type to 'patch'
- added more description
Diffstat (limited to 'docs/src/pages/en/reference')
-rw-r--r-- | docs/src/pages/en/reference/configuration-reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/en/reference/configuration-reference.md b/docs/src/pages/en/reference/configuration-reference.md index 7d6cb37e9..82c535a65 100644 --- a/docs/src/pages/en/reference/configuration-reference.md +++ b/docs/src/pages/en/reference/configuration-reference.md @@ -61,7 +61,7 @@ The `renderers` option defines the framework renderers to be used by Astro. #### buildOptions -The `buildOptions` option configures how a site is built, including its base URL (`buildOptions.site`), whether it includes a sitemap (`buildOptions.sitemap`), and whether its pages should be files (`path.html`) or directories (`path/index.html`) (`buildOptions.pageUrlFormat`). +The `buildOptions` option configures how a site is built, including its base URL (`buildOptions.site`), whether it includes a sitemap (`buildOptions.sitemap`), whether markdown draft pages should be included in the build (`buildOptions.drafts`), and whether its pages should be files (`path.html`) or directories (`path/index.html`) (`buildOptions.pageUrlFormat`). #### devOptions |