https://github.com/dashpilot/svelte-4-ssr
Example how to do server-side rendering (SSR) in Svelte 4
https://github.com/dashpilot/svelte-4-ssr
Last synced: 11 months ago
JSON representation
Example how to do server-side rendering (SSR) in Svelte 4
- Host: GitHub
- URL: https://github.com/dashpilot/svelte-4-ssr
- Owner: dashpilot
- Created: 2023-08-23T02:02:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-23T02:09:40.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T12:48:19.739Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# svelte-4-ssr
Example how to do server-side rendering (SSR) in Svelte 4
In Svelte 3 you could easily server-side-render any component using svelte/register, but since the deprecation of svelte/register in Svelte 4, I've been looking for a way to achieve the same. Check ssr.js for a simple example.