astro/packages/renderers/renderer-solid
2021-09-30 10:01:12 -04:00
..
CHANGELOG.md Version Packages (#1358) 2021-09-14 17:22:50 -07:00
client.js Fix renderer-solid not creating a reactive root (#848) 2021-07-27 08:51:20 -04:00
index.js Move Astro to Vite 2021-09-30 10:01:12 -04:00
package.json Move Astro to Vite 2021-09-30 10:01:12 -04:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Move Astro to Vite 2021-09-30 10:01:12 -04:00
static-html.js Expose JSX compilation to renderers (#588) 2021-07-21 18:10:03 -05:00

@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'
  ]
}

Documentation

Astro Renderer Documentation