astro/packages/renderers/renderer-react
Matthew Phillips 8206421ffa Fixes solid (#1634)
* Fixes solid

* Rename the test

* Rebase with next

* Skip solid test for now
2021-10-22 16:25:38 -06:00
..
CHANGELOG.md Version Packages (#1472) 2021-10-01 13:36:02 -04:00
client.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00
index.js Update renderer API for Vite (#1623) 2021-10-22 16:25:38 -06:00
package.json Update renderer API for Vite (#1623) 2021-10-22 16:25:38 -06:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Fixes solid (#1634) 2021-10-22 16:25:38 -06:00
static-html.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00

@astrojs/renderer-react

This is a plugin for Astro apps that enables server-side rendering of React components.

Installation

Install @astrojs/renderer-react and then add it to your astro.config.mjs in the renderers property:

npm install @astrojs/renderer-react

astro.config.mjs

export default {
  // ...

  renderers: [
    // ...
    '@astrojs/renderer-react'
  ]
}

Documentation

Astro Renderer Documentation