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
Question about file structure
context not up to date in `beforeload` (with stackblitz)
beforeLoad similar to how the docs describe where I pass it to the routing provider, but the context isn't being updated until after beforeLoad runs -- what am i missing here? see stackblitz below
https://stackblitz.com/edit/tanstack-router-56o6e9vq?file=src%2Froutes%2Findex.tsx...Is there any way to get available routes from specific route point?
Recursive routing (Seeing if tanstack router works for our project)

Broken Start examples
TSS dynamic sitemap
Search params inheritance merging
custom link inside component with asChild
Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?
Basic example...Throwing errors with non-500 status from server functions
How to Make ENV Accessible in a TanStack Start Server Build?
.env:
```env...Validate Location State
Does Start & Router remove the need for something like TRPC?
Link `to` prefix helper and typescript
/team/$slug prefix. I am trying to build a Link helper but I am struggling in navigating the types to play nice with my component. Any direction would be appreciated.
Example component:
```typescript
import { Link, LinkComponentProps } from "@tanstack/react-router";...Route matching with a prefix?
/@$username in tanstack router?authenticated routes
/user and if the response is valid and the user details are fetched successfully, it stores that state in the context as user. This is the state I am using to validate whether the user is logged in or not.
...How do I use Non-Nested Routes in File-based router?
_auth/accounts_/$accountId/projects works well....
Returning query options in loaderDeps to prevent duplication
ensureQueryData and useSuspenseQuery as below.
```typescript
const postsQueryOptions = queryOptions({
queryKey: ['posts'],...useSearch and conetext are not typed it search types as any and context to {}
Tanstack router looses types in loader
result is properly typed inside the loader function. In my route component, when I run const data = Route.useLoaderData(); the TypeScript type is any.
Am I using the loader function wrong here? I've tried adding an explicit return type, but it still didn't work...