0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/renderers/renderer-svelte
2021-12-16 17:36:48 -06:00
..
CHANGELOG.md chore: release @astrojs/renderer-svelte@0.2.3 2021-12-16 17:36:48 -06:00
client.js 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -04:00
index.js Add default TypeScript, Sass support to Svelte (#1982) 2021-11-23 09:45:24 -07:00
package.json chore: release @astrojs/renderer-svelte@0.2.3 2021-12-16 17:36:48 -06:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Fix prerelease bugs, reenable @astrojs/renderer-vue (#286) 2021-06-01 18:41:08 -05:00
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