diff options
author | 2021-04-27 13:42:03 -0500 | |
---|---|---|
committer | 2021-04-27 13:42:03 -0500 | |
commit | 73b7827b40ae33664877156850ecf04302fa668a (patch) | |
tree | bab8d916d06238bd859435c13b2c7390936a9cba /docs/api.md | |
parent | 41c64b30af7ed34c1a870b6f273a2889fa2df102 (diff) | |
download | astro-73b7827b40ae33664877156850ecf04302fa668a.tar.gz astro-73b7827b40ae33664877156850ecf04302fa668a.tar.zst astro-73b7827b40ae33664877156850ecf04302fa668a.zip |
chore: update docs to new defaults (#133)
Diffstat (limited to 'docs/api.md')
-rw-r--r-- | docs/api.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api.md b/docs/api.md index d3af1564f..805fb6824 100644 --- a/docs/api.md +++ b/docs/api.md @@ -139,7 +139,7 @@ export async function createCollection() { } ``` -Astro will generate an RSS 2.0 feed at `/feed/[collection].xml` (for example, `/astro/pages/$podcast.xml` would generate `/feed/podcast.xml`). +Astro will generate an RSS 2.0 feed at `/feed/[collection].xml` (for example, `/src/pages/$podcast.xml` would generate `/feed/podcast.xml`). ⚠️ Even though Astro will create the RSS feed for you, you’ll still need to add `<link>` tags manually in your `<head>` HTML: |