Skip to content

Commit c74fb50

Browse files
committed
docs(start): fix broken links
1 parent c2f732d commit c74fb50

File tree

7 files changed

+26
-23
lines changed

7 files changed

+26
-23
lines changed

docs/start/framework/react/authentication-overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -219,21 +219,21 @@ Build your own authentication system using TanStack Start's server functions and
219219
## Next Steps
220220

221221
- **Partner solutions**[Clerk](https://go.clerk.com/wOwHtuJ) or [WorkOS](https://workos.com/)
222-
- **DIY implementation**[Authentication Guide](./authentication.md)
222+
- **DIY implementation**[Authentication Guide](../authentication.md)
223223
- **Examples**[Working implementations](https://github.com/TanStack/router/tree/main/examples/react)
224224

225225
## Resources
226226

227227
**Implementation Guides:**
228228

229-
- [Authentication Patterns](./authentication.md)
230-
- [Router Authentication Guide](../../router/framework/react/guide/authenticated-routes.md)
229+
- [Authentication Patterns](../authentication.md)
230+
- [Router Authentication Guide](/router/latest/docs/framework/react/guide/authenticated-routes.md)
231231

232232
**Foundation Concepts:**
233233

234-
- [Execution Model](./execution-model.md)
235-
- [Server Functions](./server-functions.md)
234+
- [Execution Model](../execution-model.md)
235+
- [Server Functions](../server-functions.md)
236236

237237
**Step-by-Step Tutorials:**
238238

239-
- [Router How-to Guides](../../router/framework/react/how-to/README.md#authentication)
239+
- [Router How-to Guides](/router/latest/docs/framework/react/how-to/README.md#authentication)

docs/start/framework/react/authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Authentication
55

66
This guide covers authentication patterns and shows how to implement your own authentication system with TanStack Start.
77

8-
> **📋 Before You Start:** Check our [Authentication Overview](./authentication-overview.md) for all available options including partner solutions and hosted services.
8+
> **📋 Before You Start:** Check our [Authentication Overview](../authentication-overview.md) for all available options including partner solutions and hosted services.
99
1010
## Authentication Approaches
1111

@@ -604,4 +604,4 @@ When implementing authentication, consider:
604604
- **Monitoring**: Add logging and monitoring for authentication events
605605
- **Compliance**: Ensure compliance with relevant regulations if storing personal data
606606

607-
For other authentication approaches, check the [Authentication Overview](./authentication-overview.md). For specific integration help, see the [How-to Guides](../../router/framework/react/how-to/README.md#authentication) or explore our [working examples](https://github.com/TanStack/router/tree/main/examples/react).
607+
For other authentication approaches, check the [Authentication Overview](../authentication-overview.md). For specific integration help, see the [How-to Guides](/router/latest/docs/framework/react/how-to/README.md#authentication) or explore our [working examples](https://github.com/TanStack/router/tree/main/examples/react).

docs/start/framework/react/code-execution-patterns.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: code-execution-patterns
33
title: Code Execution Patterns
44
---
55

6-
This guide covers patterns for controlling where code runs in your TanStack Start application - server-only, client-only, or isomorphic (both environments). For foundational concepts, see the [Execution Model](./execution-model.md) guide.
6+
This guide covers patterns for controlling where code runs in your TanStack Start application - server-only, client-only, or isomorphic (both environments). For foundational concepts, see the [Execution Model](../execution-model.md) guide.
77

88
## Quick Start
99

@@ -140,7 +140,7 @@ function CurrentTime() {
140140

141141
## Related Resources
142142

143-
- [Execution Model](./execution-model.md) - Core concepts and architectural patterns
144-
- [Server Functions](./server-functions.md) - Deep dive into server function patterns
145-
- [Environment Variables](./environment-variables.md) - Secure environment variable handling
146-
- [Middleware](./middleware.md) - Server function middleware patterns
143+
- [Execution Model](../execution-model.md) - Core concepts and architectural patterns
144+
- [Server Functions](../server-functions.md) - Deep dive into server function patterns
145+
- [Environment Variables](../environment-variables.md) - Secure environment variable handling
146+
- [Middleware](../middleware.md) - Server function middleware patterns

docs/start/framework/react/environment-variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ interface ImportMetaEnv {
467467

468468
## Related Resources
469469

470-
- [Code Execution Patterns](./code-execution-patterns.md) - Learn about server vs client code execution
471-
- [Server Functions](./server-functions.md) - Learn more about server-side code
472-
- [Hosting](./hosting.md) - Platform-specific environment variable configuration
470+
- [Code Execution Patterns](../code-execution-patterns.md) - Learn about server vs client code execution
471+
- [Server Functions](../server-functions.md) - Learn more about server-side code
472+
- [Hosting](../hosting.md) - Platform-specific environment variable configuration
473473
- [Vite Environment Variables](https://vitejs.dev/guide/env-and-mode.html) - Official Vite documentation

docs/start/framework/react/hosting.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ However, since hosting is one of the most crucial aspects of your application's
1818
1919
When a TanStack Start application is being deployed, the `target` value in the TanStack Start Vite plugin in the`vite.config.ts` file determines the deployment target. The deployment target can be set to one of the following values:
2020

21-
- [`cloudflare-pages`](#cloudflare-pages): Deploy to Cloudflare Pages
21+
- [`cloudflare-pages`](#cloudflare-workers): Deploy to Cloudflare Pages
2222
- [`netlify`](#netlify): Deploy to Netlify
2323
- [`vercel`](#vercel): Deploy to Vercel
24-
- [`cloudflare-pages`](#cloudflare-pages): Deploy to Cloudflare Pages
25-
- [`railway`](#railway): Deploy to Railway
26-
- [`node-server`](#nodejs): Deploy to a Node.js server
24+
- [`cloudflare-pages`](#cloudflare-workers): Deploy to Cloudflare Pages
25+
- [`railway`](#nodejs--railway--docker): Deploy to Railway
26+
- [`nitro`](#using-nitro-v2): Deploy to a Nitro server
27+
- [`node-server`](#nodejs--railway--docker): Deploy to a Node.js server
2728
- [`bun`](#bun): Deploy to a Bun server
2829
- ... and more to come!
2930

@@ -86,6 +87,8 @@ Deploy your application to Cloudflare Workers using their one-click deployment p
8687
</picture>
8788
</a>
8889

90+
### Netlify
91+
8992
Install and add the [`@netlify/vite-plugin-tanstack-start`](https://www.npmjs.com/package/@netlify/vite-plugin-tanstack-start) plugin, which configures your build for Netlify deployment and provides full Netlify production platform emulation in local dev.
9093

9194
```ts
@@ -197,7 +200,7 @@ npm run start
197200
### Bun
198201

199202
> [!IMPORTANT]
200-
> Currently, the Bun specific deployment guidelines only work with React 19. If you are using React 18, please refer to the [Node.js](#nodejs) deployment guidelines.
203+
> Currently, the Bun specific deployment guidelines only work with React 19. If you are using React 18, please refer to the [Node.js](#nodejs--railway--docker) deployment guidelines.
201204
202205
Make sure that your `react` and `react-dom` packages are set to version 19.0.0 or higher in your `package.json` file. If not, run the following command to upgrade the packages:
203206

docs/start/framework/react/migrate-from-next-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ function Component() {
301301
}
302302
```
303303

304-
Learn more about the [Links](../learn-the-basics.md#navigation).
304+
Learn more about the [Links](/router/latest/docs/framework/react/guide/navigation#link-component).
305305

306306
### Server ~Actions~ Functions
307307

docs/start/framework/react/server-routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Server route requests are handled by Start automatically by default or by Start'
110110

111111
The start handler is responsible for matching an incoming request to a server route and executing the appropriate middleware and handler.
112112

113-
If you need to customize the server handler, you can do so by creating a custom handler and then passing the event to the start handler. See [The Server Entry Point](../learn-the-basics#the-server-entry-point-optional).
113+
If you need to customize the server handler, you can do so by creating a custom handler and then passing the event to the start handler. See [The Server Entry Point](../server-entry-point).
114114

115115
## Defining a Server Route
116116

0 commit comments

Comments
 (0)