astro/packages/renderers/renderer-preact
Jonathan Neal 45cea6aec5
Support Node v14.15+ (#2202)
* Support Node v14.15+

* changeset

* Update .changeset/new-hats-design.md

Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>

* Update .changeset/new-hats-design.md

Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>

* Update .changeset/new-hats-design.md

Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>

* ES2020

* update yarn.lock

Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2021-12-16 18:53:22 -05:00
..
compat [ci] yarn format 2021-10-29 19:47:01 +00:00
CHANGELOG.md chore: release (#2171) 2021-12-09 10:45:03 -08:00
client.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
index.js 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -04:00
package.json Support Node v14.15+ (#2202) 2021-12-16 18:53:22 -05:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
static-html.js Bugbash! (#263) 2021-05-28 17:19:40 -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