-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use SSR + Hydration + cacheing #3
Comments
That is not how SSR works. SSR means pages are build on request time (or served from a cache).
This is always the case with SSR because the pages don't get build at build time.
Not possible with Astro + Caching. Astro components are server side only and do not hydrate on the client. Unless we use client components (That means using Svelte or React components in Astro) but those can't handle async functions and will render empty components on the server and then hydrate on the client with the actual data. |
Some solutions: Manual rebuild button
Hydration
|
Current solution
Invalidate cache on Netlify on command?
|
instantlyrelatively quickly after refreshhttps://docs.astro.build/en/guides/integrations-guide/netlify/
The text was updated successfully, but these errors were encountered: