Skip to content

Commit 970b649

Browse files
committedJan 30, 2025·
fix: links from start to router
1 parent 830dafe commit 970b649

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed
 

‎docs/start/framework/react/api-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ It's important to remember that each route can only have a single handler file a
3535

3636
## Nested Directories vs File-names
3737

38-
In the examples above, you may have noticed that the file naming conventions are flexible and allow you to mix and match directories and file names. This is intentional and allows you to organize your API Routes in a way that makes sense for your application. You can read more about this in the [TanStack Router File-based Routing Guide](../guide/file-based-routing.md#s-or-s).
38+
In the examples above, you may have noticed that the file naming conventions are flexible and allow you to mix and match directories and file names. This is intentional and allows you to organize your API Routes in a way that makes sense for your application. You can read more about this in the [TanStack Router File-based Routing Guide](/router/latest/docs/framework/react/guide/file-based-routing#s-or-s).
3939

4040
## Setting up the entry handler
4141

‎docs/start/framework/react/authentication.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Clerk is a modern authentication platform that provides a full suite of authenti
2727

2828
- To learn more about Clerk, visit the [Clerk website](https://go.clerk.com/wOwHtuJ)
2929
- To sign up, visit the [Clerk dashboard](https://go.clerk.com/PrSDXti)
30-
- To get started with Clerk, check out our [official Start + Clerk examples!](../../examples/start-clerk-basic/)
30+
- To get started with Clerk, check out our [official Start + Clerk examples!](../examples/start-clerk-basic/)
3131

3232
## Documentation & APIs
3333

34-
Documentation for implementing your own authentication logic with TanStack Start is coming soon! In the meantime, you can check out any of the `-auth` prefixed [examples](../../../../examples) for a starting point.
34+
Documentation for implementing your own authentication logic with TanStack Start is coming soon! In the meantime, you can check out any of the `-auth` prefixed [examples](../examples) for a starting point.

‎docs/start/framework/react/learn-the-basics.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function RootDocument({ children }: Readonly<{ children: ReactNode }>) {
153153

154154
## Routes
155155

156-
Routes are an extensive feature of TanStack Router, and are covered thoroughly in the [Routing Guide](../../guide/file-based-routing). As a summary:
156+
Routes are an extensive feature of TanStack Router, and are covered thoroughly in the [Routing Guide](/router/latest/docs/framework/react/guide/file-based-routing). As a summary:
157157

158158
- Routes are defined using the `createFileRoute` function.
159159
- Routes are automatically code-split and lazy-loaded.
@@ -230,7 +230,7 @@ function Home() {
230230
}
231231
```
232232

233-
For more in-depth information on navigation, check out the [navigation guide](../../guide/navigation).
233+
For more in-depth information on navigation, check out the [navigation guide](/router/latest/docs/framework/react/guide/navigation).
234234

235235
## Server Functions (RPCs)
236236

@@ -293,7 +293,7 @@ const updateUser = createServerFn({ method: 'POST' })
293293
await updateUser({ data: { id: '1', name: 'John' } })
294294
```
295295

296-
To learn more about mutations, check out the [mutations guide](../../guide/data-mutations).
296+
To learn more about mutations, check out the [mutations guide](/router/latest/docs/framework/react/guide/data-mutations).
297297

298298
## Data Loading
299299

@@ -306,4 +306,4 @@ Here's a quick overview of how data loading works:
306306
- For performing server-only logic, call a server function from within the loader.
307307
- Similar to TanStack Query, data loaders are cached on the client and are re-used and even re-fetched in the background when the data is stale.
308308

309-
To learn more about data loading, check out the [data loading guide](../../guide/data-loading).
309+
To learn more about data loading, check out the [data loading guide](/router/latest/docs/framework/react/guide/data-loading).

‎docs/start/framework/react/quick-start.md

+26-26
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,37 @@ TanStack Start has load of examples to get you started. Pick one of the examples
88
1. Play with each example in the embedded stackblitz preview to find the one that feels like a good starting point
99
2. Click the **Deploy to Netlify** button to both clone and deploy the example to Netlify
1010
3. Or, manually clone and deploy the example to anywhere else you'd like
11-
4. Once you've done this, head back to the [Learn the Basics](./learn-the-basics) guide to learn how to use TanStack Start
11+
4. Once you've done this, head back to the [Learn the Basics](../learn-the-basics) guide to learn how to use TanStack Start
1212

1313
## Examples
1414

15-
- [Basic](../../examples/start-basic)
16-
- [Basic + Auth](../../examples/start-basic-auth)
17-
- [Basic + Counter](../../examples/start-basic-counter)
18-
- [Basic + React Query](../../examples/start-basic-react-query)
19-
- [Clerk Auth](../../examples/start-clerk-basic)
20-
- [Convex + Trellaux](../../examples/start-convex-trellaux)
21-
- [Supabase](../../examples/start-supabase-basic)
22-
- [Trellaux](../../examples/start-trellaux)
15+
- [Basic](../examples/start-basic)
16+
- [Basic + Auth](../examples/start-basic-auth)
17+
- [Basic + Counter](../examples/start-basic-counter)
18+
- [Basic + React Query](../examples/start-basic-react-query)
19+
- [Clerk Auth](../examples/start-clerk-basic)
20+
- [Convex + Trellaux](../examples/start-convex-trellaux)
21+
- [Supabase](../examples/start-supabase-basic)
22+
- [Trellaux](../examples/start-trellaux)
2323

2424
## Other Router Examples
2525

2626
While not Start-specific examples, these may help you understand more about how TanStack Router works:
2727

28-
- [Quickstart (file-based)](../../examples/quickstart-file-based)
29-
- [Quickstart (code-based)](../../examples/quickstart)
30-
- [Basic (file-based)](../../examples/basic-file-based)
31-
- [Basic (code-based)](../../examples/basic)
32-
- [Kitchen Sink (file-based)](../../examples/kitchen-sink-file-based)
33-
- [Kitchen Sink (code-based)](../../examples/kitchen-sink)
34-
- [Kitchen Sink + React Query (file-based)](../../examples/kitchen-sink-react-query-file-based)
35-
- [Kitchen Sink + React Query (code-based)](../../examples/kitchen-sink-react-query)
36-
- [Location Masking](../../examples/location-masking)
37-
- [Authenticated Routes](../../examples/authenticated-routes)
38-
- [Scroll Restoration](../../examples/scroll-restoration)
39-
- [Deferred Data](../../examples/deferred-data)
40-
- [Navigation Blocking](../../examples/navigation-blocking)
41-
- [With tRPC](../../examples/with-trpc)
42-
- [With tRPC + React Query](../../examples/with-trpc-react-query)
43-
- [Monorepo basic](../../examples/router-monorepo-simple)
44-
- [Monorepo with React Query](../../examples/router-monorepo-react-query)
28+
- [Quickstart (file-based)](../examples/quickstart-file-based)
29+
- [Quickstart (code-based)](../examples/quickstart)
30+
- [Basic (file-based)](../examples/basic-file-based)
31+
- [Basic (code-based)](../examples/basic)
32+
- [Kitchen Sink (file-based)](../examples/kitchen-sink-file-based)
33+
- [Kitchen Sink (code-based)](../examples/kitchen-sink)
34+
- [Kitchen Sink + React Query (file-based)](../examples/kitchen-sink-react-query-file-based)
35+
- [Kitchen Sink + React Query (code-based)](../examples/kitchen-sink-react-query)
36+
- [Location Masking](../examples/location-masking)
37+
- [Authenticated Routes](../examples/authenticated-routes)
38+
- [Scroll Restoration](../examples/scroll-restoration)
39+
- [Deferred Data](../examples/deferred-data)
40+
- [Navigation Blocking](../examples/navigation-blocking)
41+
- [With tRPC](../examples/with-trpc)
42+
- [With tRPC + React Query](../examples/with-trpc-react-query)
43+
- [Monorepo basic](../examples/router-monorepo-simple)
44+
- [Monorepo with React Query](../examples/router-monorepo-react-query)

0 commit comments

Comments
 (0)
Please sign in to comment.