Replies: 1 comment
-
No shame in asking this question. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
update: now that i re-read https://inertiajs.com/how-it-works (i've been away from inertia for a while and forgot...) i'm thinking my question is dumb, because what would be the point of inertia always SSRing every requested route? That would just be an unnecessarily complex way of creating a normal monolith. :) Or am i still missing something...
original question below:
If i enable SSR, does it SSR for every request of the same page by the same client (always-on/fulltime SSR), or does it just SSR for the first request of a given route for a given client, and then CSR for subsequent requests for that route, by that client, like i'm given to understand sveltekit does (perhaps
isomorphic
, orhybrid
rendering, instead of simplySSR
)?The word
initial
in the quoted docs below makes me question this.if the answer is that SSR mode is always-on/full time SSR, then i might would reword the docs to say something like:
Thanks
Beta Was this translation helpful? Give feedback.
All reactions