RSCs Use Function Requests with Next on Pages?!
I noticed my function invocations are being used up a lot. Is it because of my Next.js
I was working under the assumption that the server components are being statically generated and simply served to the client as
Is there any way I can opt to statically render these server components? I don't even use the features of server components like data fetching. They simply render HTML and compose Client Components.
Any tips and corrections on my line of thinking are greatly appreciated.
.rsc files?I was working under the assumption that the server components are being statically generated and simply served to the client as
.html, .css and .js, but it turns out they are causing server requests?Is there any way I can opt to statically render these server components? I don't even use the features of server components like data fetching. They simply render HTML and compose Client Components.
Any tips and corrections on my line of thinking are greatly appreciated.