astro/packages/renderers/renderer-svelte
moritzlaube 344866762c
Update svelte version in renderer-svelte (#2300)
* Update svelte version in renderer-svelte

I am having funny console logs saying that my svelte component `received an unexpected slot "default".`. This issue is described here: https://github.com/sveltejs/kit/issues/981

Supposedly, updating svelte to version 3.44.3 solves this issue. I couldn't test it, though.

* Update Svelte to 3.44.3 to get rid of console warning that component receives an unexpected slot "default".
2022-01-04 10:17:21 -05:00
..
CHANGELOG.md [ci] release (#2219) 2021-12-23 11:49:30 -05:00
client.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00
index.js Use accessible indentation (#2253) 2021-12-22 16:11:05 -05:00
package.json Update svelte version in renderer-svelte (#2300) 2022-01-04 10:17:21 -05: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