Duplicates
Summary 馃挕
I want to avoid hydration without creating an initial fetch waterfall for route props.
Currently:
ssr: true sends props with the initial response, but also renders application HTML and requires hydration.
ssr: false avoids hydration, but createAsync() / query() data is fetched after the client boots.
Requested mode:
- Resolve route data on the server.
- Return an HTML shell, client scripts, and serialized initial props in one response.
- Do not render application HTML on the server.
- Seed the client with those props and use
render() instead of hydrate().
This resembles the Inertia page object: the initial response carries the matched component, props, URL, and version so the client can render immediately.
Motivation 馃敠
Avoid maintaining hydration while preserving one request for both the document and its initial data. No duplicate server/client HTML rendering and no follow-up request waterfall for initial props.
Duplicates
Summary 馃挕
I want to avoid hydration without creating an initial fetch waterfall for route props.
Currently:
ssr: truesends props with the initial response, but also renders application HTML and requires hydration.ssr: falseavoids hydration, butcreateAsync()/query()data is fetched after the client boots.Requested mode:
render()instead ofhydrate().This resembles the Inertia page object: the initial response carries the matched component, props, URL, and version so the client can render immediately.
Motivation 馃敠
Avoid maintaining hydration while preserving one request for both the document and its initial data. No duplicate server/client HTML rendering and no follow-up request waterfall for initial props.