astro/packages/renderers/renderer-preact
Nate Moore 34e03cf912
do not format vite (#1710)
* Revert "[ci] yarn format"

This reverts commit 93489946cc.

* chore: ignore vendor
2021-10-29 14:45:32 -05:00
..
compat do not format vite (#1710) 2021-10-29 14:45:32 -05:00
CHANGELOG.md Version Packages (#1358) 2021-09-14 17:22:50 -07:00
client.js fix preact render to update a component on first render (#966) 2021-08-03 14:00:49 -04:00
index.js 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -04:00
package.json 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -04: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-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