0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00
astro/packages/renderers/renderer-svelte
github-actions[bot] e57308d70c
[ci] release (#2071)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-12-02 13:01:17 -05:00
..
CHANGELOG.md [ci] release (#2071) 2021-12-02 13:01:17 -05:00
client.js
index.js Add default TypeScript, Sass support to Svelte (#1982) 2021-11-23 09:45:24 -07:00
package.json [ci] release (#2071) 2021-12-02 13:01:17 -05:00
README.md
server.js
Wrapper.svelte fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
Wrapper.svelte.ssr.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00

@astrojs/renderer-svelte

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

Installation

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

npm install @astrojs/renderer-svelte

astro.config.mjs

export default {
  // ...

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

Documentation

Astro Renderer Documentation