diff options
author | 2021-06-07 12:53:56 -0500 | |
---|---|---|
committer | 2021-06-07 13:53:56 -0400 | |
commit | c57e18d2f3f20df62a2c8a7c5361f068074e2a47 (patch) | |
tree | df64e00bf7cd9d13fdbe6669537d224297089eb8 | |
parent | f6da8b8571abb0fb1ceb1e13288f28808d6c8ed1 (diff) | |
download | astro-c57e18d2f3f20df62a2c8a7c5361f068074e2a47.tar.gz astro-c57e18d2f3f20df62a2c8a7c5361f068074e2a47.tar.zst astro-c57e18d2f3f20df62a2c8a7c5361f068074e2a47.zip |
docs: add link to renderer docs (#312)
* docs: add link to renderer docs
* doc: update renderer link
* doc: update renderer link
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -188,6 +188,12 @@ Astro uses __[Snowpack](https://www.snowpack.dev/)__ for module resolution. You 👉 [**`snowpack.config.mjs` Reference**][docs-snowpack-config] +## 🪄 Renderers + +Astro is able to render [React](https://npm.im/@astrojs/renderer-react), [Svelte](https://npm.im/@astrojs/renderer-svelte), [Vue](https://npm.im/@astrojs/renderer-vue), and [Preact](https://npm.im/@astrojs/renderer-preact) components out of the box. If you'd like to add support for another framework, you can build a **renderer** plugin using the same interface as Astro's official renderers. + +👉 [**Renderer Docs**][docs-renderer] + ## 📚 API 👉 [**Full API Reference**][docs-api] @@ -204,6 +210,7 @@ Astro uses __[Snowpack](https://www.snowpack.dev/)__ for module resolution. You [docs-snowpack-config]: https://www.snowpack.dev/reference/configuration [docs-syntax]: ./docs/syntax.md [docs-api]: ./docs/api.md +[docs-renderer]: ./docs/renderers.md [docs-collections]: ./docs/collections.md [docs-markdown]: ./docs/markdown.md [docs-dev]: ./docs/dev.md |