I noticed my function invocations are being used up a lot. Is it because of my Next.js
.rsc
.rsc
files?
I was working under the assumption that the server components are being statically generated and simply served to the client as
.html
.html
,
.css
.css
and
.js
.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.