astro/packages/renderers/renderer-svelte
2022-04-02 13:37:28 -06:00
..
CHANGELOG.md [ci] release (#2808) 2022-03-15 19:40:27 -05:00
client.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00
index.js fix: Svelte PostCSS config error (#2807) 2022-03-15 19:32:39 -04:00
package.json exit prerelease mode (#2967) 2022-04-02 13:37:28 -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
Wrapper.svelte fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
Wrapper.svelte.ssr.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05: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