Comment by user34283
5 days ago
That depends on how you interpret "static render".
I did not interpret that as React SSG. SSG is the default behavior of NextJS unless you dynamically fetch data, turning it into SSR automatically.
What I thought of is React's "renderToString()" at build time which will produce static HTML with event handlers stripped, in preparation for a later "hydrateRoot()" on the client side.
> That depends on how you interpret "static render".
It only depends if you interpret it incorrectly.