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
How to do authenticated routes in `start` like this example?
Sync loader always causes pending component to show?
useQuery() (so we get reactive data but also start fetching the data as soon as possible).
We handle loading state of the actual route using skeletons, so we want to get it mounted as soon as possible. We observe that merely having the loader(): void defined always causes the throbber to load, even though we return no value and the loader is not async.
```tsx...Flat routes don't work in TanStack Start?

How do I assert types for route params?
createFileRoute("/listening/top/$entity")
is it possible to assert or assign a type to $entity? in my case I'd like for it to be an enum with artists, tracks, albums but I can't figure out how to extend it beyond a string...Type-safety for list of params in custom component
Search params start and end date validation
External Providers
createLink causes weird behavior with component?
createLink. Felt like a great idea at first to help me distribute the type safety of the router on a component that I'd like to link to another page. But it causes this weird behavior with the styles.
How do I stop it from doing that?
```tsx...Navigation state?
Is it possible to have a route with __ in the path?
Using virtual routes to load routes from an external package
Understanding beforeLoad
Route.useRouteContext() is typed with { auth: User } and not { auth: User | null }.
Then I asked about it and Manuel Schiller help me to find out the problem. But then I wanted to understand how it works better so I cloned the router repository and read how the beforeLoad works here: https://github.com/TanStack/router/blob/d9a97e2693a726342ed8e9bda6af190902f34077/packages/react-router/src/router.ts#L2168. And I saw that before launching beforeLoad the context seems to add prev.__beforeLoadContext so I thought it's the previous beforeLoadContext value of the route match...are intercepting routes possible like in nextjs?
Search mask lagging behind by an update
Question regarding nested layouts
data loader only on first render
React router to Tanstack router migration
implementing the breadcrumbs example in docs to a typescript project
Route implicitely has type 'any' because of loader