SolidStart SSR + CSR?
Beginner question: I am going to start a project that could be created as an SPA and am wondering a bit whether SolidStart would benefit me.
I've used other frameworks before (Nuxt) but it's been a while and I 'm a bit confused. What I'm thinking is when first opening the app to a url in the browser, the server would render the first page for fast page load. Then afterwards if the user clicks on other urls, the client would render it on its own. Does SolidStart SSR already do that? Or does it server-side render every page?
4 Replies
SolidStart has SSR and CSR
much like any other metaframeworks
Right. But in SSR does it go to the server to render every subsequent url?
that's what SSR does
but not for client-side routing
initial page load - SSR
subsequent client navigation - CSR
Aha, I see. The part about the <A> component to use CSR
Thank you!