0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00
astro/packages/renderers/renderer-preact
Francois Valdy 5f5dc60976
Add missing licenses to published packages (#2166)
* chore: add missing licenses

* chore: update package.json info

Co-authored-by: Nate Moore <nate@skypack.dev>
2021-12-13 15:14:34 -06:00
..
compat
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
package.json Add missing licenses to published packages (#2166) 2021-12-13 15:14:34 -06:00
README.md
server.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
static-html.js

@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