From bb80a974e06a9f85f0e99e76f2efa6fac0213bd0 Mon Sep 17 00:00:00 2001 From: Alessandro Date: Mon, 28 Feb 2022 14:46:33 +0100 Subject: [PATCH] Fix broken link in react-18 streaming docs. A link leads to a 404 page due to a missing `/ ` --- docs/advanced-features/react-18/streaming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-features/react-18/streaming.md b/docs/advanced-features/react-18/streaming.md index 544759b3daa6..984264190dc5 100644 --- a/docs/advanced-features/react-18/streaming.md +++ b/docs/advanced-features/react-18/streaming.md @@ -1,7 +1,7 @@ # Streaming SSR (Alpha) React 18 will include architectural improvements to React server-side rendering (SSR) performance. This means you can use `Suspense` in your React components in streaming SSR mode and React will render them on the server and send them through HTTP streams. -It's worth noting that another experimental feature, React Server Components, is based on streaming. You can read more about server components related streaming APIs in [`next/streaming`](docs/api-reference/next/streaming.md). However, this guide focuses on basic React 18 streaming. +It's worth noting that another experimental feature, React Server Components, is based on streaming. You can read more about server components related streaming APIs in [`next/streaming`](/docs/api-reference/next/streaming.md). However, this guide focuses on basic React 18 streaming. ## Enable Streaming SSR