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
Array of objects in search params?
<Link href=""> type error

tanstack router beforeLoad show blank page
Nuqs vs Tanstack Router
Route props order
createFileRoute object. For example, params and loaderDeps should be passed before loader. I know it should be evaluated in that order probably, but is there a specific reason for passing them in order too, other than encouraging a convention?...Is router.tsx a magic file ? Is it hardcoded on Tanstack router ?
src/router.tsx treated as a special file ?
In the Authenticated Routes example, there is no router.tsx, only a main.tsx
https://tanstack.com/router/latest/docs/framework/react/examples/authenticated-routes?panel=code
But when I try to use only the main.tsx file, the app breaks with a very obscure message
```...Tanstack Router + React Query + Better Auth
How to hide prefix when optional path param is undefined
Search param from loader data
langId so it's available globally to children.
What would be the best approach here?...share status between two routes
Using <Navigate /> causes "Maximum update depth exceeded"
<Navigate /> component to redirect them, it causes a "Maximum update depth exceeded", or more specifically, this error:
```
Uncaught (in promise) Error: Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops....Can a layout route be skipped for children routes under a folder?
Is there a way to validate path parameters pre-route matching?
/{-$locale}/{$category}/$articleSlug
/{-$locale}/{$branch}/$slug
But in the end the route matching picks the wrong route and thinks a category is a locale. If I could add a regex validation or something to the ${-locale<(en|de|fr)>} that would be great....The requested module '@tanstack/router-core' does not provide an export named 'createSerializationAd
SyntaxError - The requested module '@tanstack/router-core' does not provide an export named 'createSerializationAdapter'
SyntaxError - The requested module '@tanstack/router-core' does not provide an export named 'createSerializationAdapter'
Matching `/info/` and /info/something/$slug` but not `/info/something`
Is it possible to forward keycloak client cookie in server context?
Is it possible to convert a SearchParam string to a valid LinkOption?
return_to that contains a URL that may exist within my application like this
?return_to=https//app.foundry-dev.ac/org/settings/billing/credit (URL decoded so it's easier to read here)
I can access that param like this...useQuery keeping the whole page in loading state
Type inference doesn't seem to work with context and loader functions
How can I extend the client-side context down the route tree?
beforeLoad, we are able to extend the router context on the server-side for all child routes. This is really useful, but has the constraint of needing the context to be serialisable, meaning we can't take full advantage of the context manipulation by passing functions, etc.
An example use-case might be logging. The context is created when the router is initialised: ...