Skip to content

Commit edbb304

Browse files
authored
docs: Fix broken links on ssr.md (#8792)
1 parent 4a89814 commit edbb304

File tree

1 file changed

+4
-4
lines changed
  • docs/framework/react/guides

1 file changed

+4
-4
lines changed

docs/framework/react/guides/ssr.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ title: Server Rendering & Hydration
55

66
In this guide you'll learn how to use React Query with server rendering.
77

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.
99

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).
1111

1212
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.
1313

@@ -181,7 +181,7 @@ With just a little more setup, you can use a `queryClient` to prefetch queries d
181181
182182
### Full Next.js pages router example
183183

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).
185185
186186
Initial setup:
187187

@@ -386,7 +386,7 @@ With Remix, this is a little bit more involved, we recommend checking out the [u
386386

387387
## Prefetching dependent queries
388388

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):
390390

391391
```tsx
392392
// Get the user

0 commit comments

Comments
 (0)