From 26f9e7396c13f87ef834c6abcf84f0770dcf7696 Mon Sep 17 00:00:00 2001 From: John Forte Date: Mon, 17 Jun 2024 14:11:21 -0400 Subject: [PATCH] fix: rearticulation the not needing of a web server for RSC --- src/content/reference/rsc/server-components.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/reference/rsc/server-components.md b/src/content/reference/rsc/server-components.md index a4ee4dd2bf8..b3c1ac35bef 100644 --- a/src/content/reference/rsc/server-components.md +++ b/src/content/reference/rsc/server-components.md @@ -23,8 +23,8 @@ To support React Server Components as a bundler or framework, we recommend pinni -### Server Components without a Server {/*server-components-without-a-server*/} -Server components can run at build time to read from the filesystem or fetch static content, so a web server is not required. For example, you may want to read static data from a content management system. +### Server Components at build time generation {/*server-components-at-build-time-generation*/} +Server components can run at build time to read from the filesystem or fetch static content, allowing for the rendering to take place during build time as apposed to having it render when a request comes in. For example, you may want to read static data from a content management system. Without Server Components, it's common to fetch static data on the client with an Effect: ```js