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
Is it possible to see routes history in devtools?
Path is not types safe
redirect fn doesn't produce any error if you pass path which is not in router with type string
```
const t: string = "bla";
...Tanstack Router: Get the current location/path
react-router it was possible to use the useLocation hook to get the pathname of the router, is there the same thing or an alternative with tanstack?...Posts refetch in example
Form action not sending formData
[DevTools] Uncaught TypeError: contextMap[utilName] is not a function
1.0.6 or beta-280 from beta-279 causes the following error when using inside of the RouterProvider
```
createHooksInternal-f1d4019d.mjs:146 Uncaught TypeError: contextMap[utilName] is not a function
at createHooksInternal-f1d4019d.mjs:146:39...Can you use TanStack Router without TypeScript?
Layout for Route
Bug or I am doing something wrong
Uncaught Error: Invariant failed: Duplicate routes found with id: __root__...beforeLoad never called when using with Webpack's FederationPlugin
Should I use tanstack router in a new project for production?
route.useSomething() and eslint(react-hooks/rules-of-hooks)
queryClient.ensureQueryData(...) vs queryClient.fetchQuery(...) inside loader
queryClient.ensureQueryData(...) and then using useSuspenseQuery() over queryClient.fetchQuery(...) and returning the data in the loader, and then using router.useLoaderData() on the other end?...HTML Text Fragments
window.location.hash / <a href="#myAnchor'>? The problem with this being that tanstack won't manage the hash properly so I have to deal with programatically clearing the hash when I go somewhere else...
...schema enforcement for route path segments
/t/$bar where bar has to be a number (and useParams returns a number)?Old react-location docs
need help with applying transition to out
react-transition-group library to apply the transition to outlet when navigating here is my code but it's not working out
```tsx
function App() {
const { location } = useRouterState();
return (...How to define a 404 or not found page in SSR file based ? (v1.0.0)
not_found.tsx is not doing the trick. I saw a discord post speaking about NotFoundError() but I don't have any clue....