You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/blog/2025/10/01/react-19-2.md
+41-5Lines changed: 41 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,12 +151,48 @@ See the [Component track docs](/reference/dev-tools/react-performance-tracks#com
151
151
152
152
### `resume` {/*resume*/}
153
153
154
-
We're adding new APIs to support partial pre-rendering for SSR:
154
+
In 19.2 we're adding a new capability to pre-render part of the app ahead of time, and resume rendering it later.
155
155
156
-
- `resume`
157
-
- `resumeToPipeableStream`
158
-
- `resumeAndPrerender`
159
-
- `resumeAndPrerenderToNodeStream`
156
+
This feature is called "Partial Pre-rendering", and allows you to pre-render the static parts of your app and serve it from a CDN, and then resume rendering the shell to fill it in with dynamic content later.
157
+
158
+
To pre-render an app to resume later, first call `prerender` with an `AbortController`:
0 commit comments