.. | ||
CHANGELOG.md | ||
client.js | ||
index.js | ||
package.json | ||
README.md | ||
server.js | ||
static-html.js |
@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'
]
}