@astrojs/renderer-preact
v0.5.0
Published
Use Preact components within Astro
Downloads
1,981
Readme
@astrojs/renderer-preact
This is a plugin for Astro apps that enables server-side rendering of Preact components.
Installation
Install @astrojs/renderer-preact
and then add it to your astro.config.mjs
in the renderers
property:
npm install @astrojs/renderer-preact
astro.config.mjs
export default {
// ...
renderers: [
// ...
'@astrojs/renderer-preact'
]
}