astro/packages/renderers/renderer-react
Drew Powers 97d37f8f49
Docs: Add READMEs for renderers (#1351)
* Add README stub for renderers

* Add renderer READMEs
2021-09-14 16:26:23 -07:00
..
CHANGELOG.md Version Packages (#882) 2021-07-27 12:41:42 -04:00
client.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00
index.js [ci] yarn format 2021-07-21 23:11:40 +00:00
package.json Version Packages (#882) 2021-07-27 12:41:42 -04:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js [ci] yarn format 2021-07-09 13:41:50 +00: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