astro/packages/renderers/renderer-preact/README.md
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

586 B

@astrojs/renderer-preact

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

Installation

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

npm install @astrojs/renderer-preact

astro.config.mjs

export default {
  // ...

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

Documentation

Astro Renderer Documentation