5f91e007cb
* chore: update dependencies * fix(svelte): use experimental vite preprocessor rather than svelte-preprocess * chore: add changeset |
||
---|---|---|
.. | ||
CHANGELOG.md | ||
client.js | ||
index.js | ||
package.json | ||
README.md | ||
server.js | ||
Wrapper.svelte | ||
Wrapper.svelte.ssr.js |
@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'
]
}