react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Layout for dynamic params

Need to refresh manually when using tailwind with rsbuild
Infinite rerenders with preload of 'intent' on data table
List-Detail Layout with Path Params
Undefined context with useRouteContext
useRouteContext hook coupled with validateSearch in a nested route that throw an error in a specific situation.
In my application, there is an _auth route that ensure, in the beforeLoad method, that the user is logged in, returns his account's information if he is or redirects him to the login page if he's not....
Handle 404 from a component query
__root.tsx that queries the api. When it works, it works, but I am having trouble in the context of this file based router to figure out what to do when it 404s. This one data fetch in turn runs the entire ui and every query afterwards, so the ui won't work if that one request fails. Ideally I'd like to just display an error component, or reroute to one in theif (isError) {...}
if (isError) {...}
type inferred incorrect on getRouteApi or useSearch({ from: '/some/route/path' })

Meta works on lazy routes despite TS screaming

Two routes one page (optional parameter)
whatever/ID/SECOND_ID where they both point to the same page but the SECOND_ID is optional? So even if you just put whatever/1 instead of whatever/1/2 it still match the same pageValidate Search different output and input types?
Flash of unstyled content
Type validating arbitrary strings against router types
Role base URL protection
Custom 404 does not appear in my main-layout

Best practice for redirecting after a fetch
/users and /users/$userId...Isn't the Tanstack Router in React not supporting Hot Module Replacement (HMR)?
Link active prop with param
activeProps prop in Link component and a route with a param. I have implemented a TabsRoute component. I have a sidebar with all the routes for example:
```ts
export const SIDEBAR_ITEMS: SidebarItem[] = [
{...Not able to build start app
Infer routes type to a custom component
to route via props to the component, is there a type to get all the available routes in the same way the to prop of the Link does?
```
<Link to="/settings">Back</Link>
...