Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.vite
# See https://help.github.com/ignore-files/ for more about ignoring files.
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# dependencies
node_modules
Expand Down
4 changes: 2 additions & 2 deletions docs/router/how-to/setup-basic-search-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ After setting up basic search parameters, you might want to:
- [Valibot Documentation](https://valibot.dev/) - Lightweight validation library
- [Yup Documentation](https://github.com/jquense/yup) - Object schema validation
- **TanStack Router:**
- [TanStack Zod Adapter](https://tanstack.com/router/latest/docs/framework/react/api/router/zodValidator) - Official Zod adapter
- [TanStack Valibot Adapter](https://tanstack.com/router/latest/docs/framework/react/api/router/valibotValidator) - Official Valibot adapter
- [TanStack Zod Adapter](../guide/search-params.md#zod) - Official Zod adapter
- [TanStack Valibot Adapter](../guide/search-params.md#valibot) - Official Valibot adapter
- [Search Parameters Guide](../guide/search-params.md) - Comprehensive search parameters documentation
- [Type Safety Guide](../guide/type-safety.md) - Understanding TanStack Router's type safety
1 change: 0 additions & 1 deletion docs/start/framework/solid/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ To use a different example, replace `start-basic` with one of the slugs below.

#### Examples

- [Bare](https://github.com/TanStack/router/tree/main/examples/solid/start-bare) (`start-bare`)
- [Basic](https://github.com/TanStack/router/tree/main/examples/solid/start-basic) (`start-basic`)
- [Basic Static](https://github.com/TanStack/router/tree/main/examples/solid/start-basic-static) (`start-basic-static`)
- [Counter](https://github.com/TanStack/router/tree/main/examples/solid/start-counter) (`start-counter`)
Expand Down
2 changes: 1 addition & 1 deletion packages/router-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# TanStack Router CLI

See https://tanstack.com/router/latest/docs/framework/react/routing/installation/with-router-cli
See https://tanstack.com/router/latest/docs/installation/with-router-cli
2 changes: 1 addition & 1 deletion packages/router-core/src/not-found.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export type NotFoundError = {
*
* @param options Optional settings including `routeId`, `headers`, and `throw`.
* @returns A not-found error object that can be thrown or returned.
* @link https://tanstack.com/router/latest/docs/router/framework/react/api/router/notFoundFunction
* @link https://tanstack.com/router/latest/docs/framework/react/api/router/notFoundFunction
*/
export function notFound(options: NotFoundError = {}) {
;(options as any).isNotFound = true
Expand Down
2 changes: 1 addition & 1 deletion packages/router-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ See https://tanstack.com/router/latest/docs/framework/react/routing/file-based-r
npm install -D @tanstack/router-plugin
```

See https://tanstack.com/router/latest/docs/framework/react/routing/installation/with-router-cli for usage instructions.
See https://tanstack.com/router/latest/docs/installation/with-router-cli for usage instructions.