Power of Partial Prerendering with Bun
Briefly

Partial prerendering (PPR) involves rendering static components during build-time and deferring the rendering of dynamic components to runtime.
Thinking about server-side rendering (SSR), in many cases, we have completely static components, such as the header, footer, etc., and we can save the milliseconds of rendering of these components if we only prerender once in build-time and then do not have to repeat the rendering for each request.
Read at DEV Community
[
add
]
[
|
|
]