astro/packages/renderers/renderer-react
Nate Moore 19d45496e7 [next] Update renderers (#1509)
* chore: update vite

* fix(renderers): point renderers to resolved server/client entrypoints
2021-10-15 14:10:26 -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 [next] Update renderers (#1509) 2021-10-15 14:10:26 -06:00
package.json [next] Update renderers (#1509) 2021-10-15 14:10:26 -06:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Support PureComponent in the react renderer (#1467) 2021-10-01 11:25:17 -04: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