@astrojs/renderer-svelte
v0.5.2
Published
Use Svelte components within Astro
Downloads
1,959
Readme
@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'
]
}