router icon indicating copy to clipboard operation
router copied to clipboard

🤖 Fully typesafe Router for React (and friends) w/ built-in caching, 1st class search-param APIs, client-side cache integration and isomorphic rendering.

Results 526 router issues
Sort by recently updated
recently updated
newest added

### Describe the bug See this line: ```tsx router.matchRoute({ to: '/posts' as string }); ``` I am deliberately casting the path to string to show the issue. Because sometimes the...

Formatters such as Prettier and Biome break the path to a new line as soon as the line length exceeds X characters: ```typescript export const Route = new FileRoute( '/dashboard/invoices/$invoiceId',...

### Describe the bug We've encountered an issue which is reproducible by following the quick start guide on the tanstack router page. - @tanstack/react-router has version 1.1.4 - Safari has...

### Describe the bug Now that tanstack router has reached v1, I was excited to try it because [accessibility was promised for 1.0](https://twitter.com/tannerlinsley/status/1590153627834146817). I fired up one of the examples...

enhancement

### Describe the bug EDIT: Originally titled Strict Mode not handled properly. Changed because bug happens as well when out of strict mode. See my latest response. See stackblitz link...

This address #707 by adding support for routes of the form `prefix$var$suffix`. This is technically a breaking change in that you can no longer have `$` in the name of...

### Describe the bug Currently TanStack Router supports dynamic path segments in the form `/$var/`. However it is sometimes useful to have a static prefix (or suffix) that is used...

enhancement

Addresses issue #968 fixing error handling during SSR This pull request adds: - The ability for server errors to be handled via `errorComponent` while `wrapInSuspense: true` - Router options `serializeError`...