97d37f8f49
* Add README stub for renderers * Add renderer READMEs
583 B
583 B
@astrojs/renderer-solid
This is a plugin for Astro apps that enables server-side rendering of SolidJS components.
Installation
Install @astrojs/renderer-solid
and then add it to your astro.config.mjs
in the renderers
property:
npm install @astrojs/renderer-solid
astro.config.mjs
export default {
// ...
renderers: [
// ...
'@astrojs/renderer-solid'
]
}