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: docs/framework/react/guides/ssr.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ title: Server Rendering & Hydration
5
5
6
6
In this guide you'll learn how to use React Query with server rendering.
7
7
8
-
See the guide on [Prefetching & Router Integration](./prefetching) for some background. You might also want to check out the [Performance & Request Waterfalls guide](./request-waterfalls) before that.
8
+
See the guide on [Prefetching & Router Integration](../prefetching) for some background. You might also want to check out the [Performance & Request Waterfalls guide](../request-waterfalls) before that.
9
9
10
-
For advanced server rendering patterns, such as streaming, Server Components and the new Next.js app router, see the [Advanced Server Rendering guide](./advanced-ssr).
10
+
For advanced server rendering patterns, such as streaming, Server Components and the new Next.js app router, see the [Advanced Server Rendering guide](../advanced-ssr).
11
11
12
12
If you just want to see some code, you can skip ahead to the [Full Next.js pages router example](#full-nextjs-pages-router-example) or the [Full Remix example](#full-remix-example) below.
13
13
@@ -181,7 +181,7 @@ With just a little more setup, you can use a `queryClient` to prefetch queries d
181
181
182
182
### Full Next.js pages router example
183
183
184
-
> For app router documentation, see the [Advanced Server Rendering guide](./advanced-ssr).
184
+
> For app router documentation, see the [Advanced Server Rendering guide](../advanced-ssr).
185
185
186
186
Initial setup:
187
187
@@ -386,7 +386,7 @@ With Remix, this is a little bit more involved, we recommend checking out the [u
386
386
387
387
## Prefetching dependent queries
388
388
389
-
Over in the Prefetching guide we learned how to [prefetch dependent queries](./prefetching#dependent-queries--code-splitting), but how do we do this in framework loaders? Consider the following code, taken from the [Dependent Queries guide](./dependent-queries):
389
+
Over in the Prefetching guide we learned how to [prefetch dependent queries](../prefetching#dependent-queries--code-splitting), but how do we do this in framework loaders? Consider the following code, taken from the [Dependent Queries guide](../dependent-queries):
0 commit comments