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
Why to use `from` in navigations
from is used when navigating.
Take this example from docs https://tanstack.com/router/latest/docs/framework/react/guide/navigation#usenavigate:
...Pass context to another root (createRoot)
createRoute and createLazyRoute example + docs
createRoute gives typescript errors when I try use the example from the doc.
Is there an example of this working somewhere?...How to reload page?
navigate(0), but how do I do it here? Or should I go with window.location.reload? Though, I'm not sure if that's the best option)Can I use router.navigate to change routes outside of React context?
router object in my KO code and called router.navigate when the user clicks a link?
We're currently using react-router library, but I'm thinking about migrating to this one. Just want to make sure this use case is supported before we start the migration....Typings not working in Vite project

beforeLoad with file based routing?
[SOLVED] Not found being presented for working route
redirect search param just like the docs do.
But I am experiencing weird behavior where I can reach a protected route through normal navigation. But refreshing the page (triggering auth again) sends me to the not found component.
I don't perform any other redirect other than what the docs have provided. Why would this happen and how can I fix it?...Multiple outlets
/ to have no additional ui and for all of the other routes I'd like to use <Outlet /> thats wrapped with a navbar etc. How can I achive it?navigation middleware
Optional Catch-all Segments in File Based routing
pages/shop/[[...slug]].ts
https://nextjs.org/docs/pages/building-your-application/routing/dynamic-routes#optional-catch-all-segments
...Deep routes with route matching
useMatches (or any other function) for creating breadcrumbs?
```...useRouterState - documentation?
Kitchen Sink React Query File Based example in __root.tsx:
```function RouterSpinner() {
const isLoading = useRouterState({ select: (s) => s.status === 'pending' })
return <Spinner show={isLoading} />...Type safe HistoryState in navigate
Infer context types in authenticated routes
dashboard.tsx Since we check user before load I'd like to overwrite user type.
How can I do it?...Authenticated Routes

Router.invalidate() stopped working after update [solved in 1.16.6]
router.invalidate() stopped working after the last update. (I updated from 1.16.0 to 1.16.5) Any idea how to fix this?
Thank you very much for your help!...How to do shallow routing?
Auth context
Blocker and link