astro/packages/renderers/renderer-preact
github-actions[bot] 3e24341f17
[ci] release (next) (#2555)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-02-09 13:18:10 -06:00
..
compat Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00
CHANGELOG.md [ci] release (next) (#2555) 2022-02-09 13:18:10 -06:00
client.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
index.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00
package.json [ci] release (next) (#2555) 2022-02-09 13:18:10 -06:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00
static-html.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00

@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