blob: fb0fb82709f66edfd0333c6974da876ed1544c82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Astro Renderers
Astro is designed to support your favorite UI frameworks. [React][react], [Svelte][svelte], [Vue][vue], and [Preact][preact] are all built-in to Astro and supported out of the box. No configuration is needed to enable these.
For adding additional frameworks (or your own custom one), please refer to [the full documentation][renderer-docs].
[preact]: https://npm.im/@astrojs/renderer-preact
[react]: https://npm.im/@astrojs/renderer-react
[renderer-docs]: https://docs.astro.build/reference/renderer-reference
[svelte]: https://npm.im/@astrojs/renderer-svelte
[vue]: https://npm.im/@astrojs/renderer-vue
|