97d37f8f49
* Add README stub for renderers * Add renderer READMEs
586 B
586 B
@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'
]
}