DEV Community

Discussion on: Answers to Common Next.js Questions

Collapse
 
perssondennis profile image
Dennis Persson

Yes, that's a great addition, for a full page reload. Not sure if I have written something which implies the opposite somewhere, but either way, it's a great point that should have been brought up as a question in this article.

Collapse
 
leandro_nnz profile image
Leandro Nuñez

Thanks for your comment. I did not understood what you meant by “for a full page reload”.
I added my comment based on your text here:

This may sound like a bad option if you use Next.js with the expectations to mostly use Server Components, but it actually is completely natural. The rest of your layout file, can still be rendered as a Server Component, it's just the Client Component itself which will need to be rendered on the client.

There’s a lot of confusion about the server-client rendering of next.js, that’s why I added the comment.
Lot of people think it’s bad to render client components as next.js was built for server rendering but that’s far away from the reality as you pointed out several times in your article.