astro/packages/renderers/renderer-react
Drew Powers 3cd1458aa7
Fix Windows CSS bundling bug (#1840)
* Fix Windows CSS bundling bug

JS components’ styles accidentally left out of final build on Windows

* Review feedback
2021-11-16 13:59:41 -07:00
..
CHANGELOG.md Version Packages (next) (#1709) 2021-10-29 14:48:54 -05:00
client.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00
index.js 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -04:00
package.json Fix Windows CSS bundling bug (#1840) 2021-11-16 13:59:41 -07:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -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