diff options
author | 2021-09-01 13:04:26 +1200 | |
---|---|---|
committer | 2021-08-31 18:04:26 -0700 | |
commit | 66734b75f1e50c47515e5bf1650c8eeb1615ef70 (patch) | |
tree | aeea1dfda5deba9b1741829a668c8a12f2ca4b60 | |
parent | 61e4f2cb1fd74e9ef3122e5d9e974df6ba7eee29 (diff) | |
download | astro-66734b75f1e50c47515e5bf1650c8eeb1615ef70.tar.gz astro-66734b75f1e50c47515e5bf1650c8eeb1615ef70.tar.zst astro-66734b75f1e50c47515e5bf1650c8eeb1615ef70.zip |
Remove reference/link to Collections (#1277)
* Remove reference/link to Collections
Remove line that refers to 'Core Concepts - Collections' given this is now deprecated.
* Added reference to routing
Tested link as working in local build.
-rw-r--r-- | docs/src/pages/reference/api-reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/reference/api-reference.md b/docs/src/pages/reference/api-reference.md index 046971925..9daefb46a 100644 --- a/docs/src/pages/reference/api-reference.md +++ b/docs/src/pages/reference/api-reference.md @@ -9,7 +9,7 @@ The `Astro` global is available in all contexts in `.astro` files. It has the fo ### `Astro.fetchContent()` -`Astro.fetchContent()` is a way to load local `*.md` files into your static site setup. You can either use this on its own, or within [Astro Collections](/core-concepts/collections). +`Astro.fetchContent()` is a way to load local `*.md` files into your static site setup. You can either use this on its own, or when configuring [Routing](/core-concepts/routing). ```jsx // ./src/components/my-component.astro |