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
Any idea why "Loading" text is not shown instantly in the following example? Video attached.
In file-based routing, how to avoid duplicating files?
Does onResolved fire on initial page load in TanStack Router?”
router.subscribe in combination with the default browser routing (createRouter).
If I subscribe like this:
```router.subscribe('onResolved', (evt) => {...Esbuild JS API error with Tanstack Router Plugin

Non-redirected authentication: parallel routes
Using beforeLoad to inject data into context for deeply nested routes has performance issues
Search params are automatically converted to number type.
123, but they could also be uuids, which are just strings. If I type my id param as a z.string(), but pass 123 the validation fails, since it converts it to a number. How can I force it to accept it as a string? Using z.coerce changes the param to %22123%22 which I don't want.How to redirect and pass search params?
Exclude children from custom link component
children from a custom link component created with createLink()?
We have a IconLink component that accepts a label property of type string and we don't want to accept children....Filtered Memory History in Tanstack Router
ContinueOutside component, which will have a link to navigate me out (thereby taking me out of the memory history'd router)
I've got a very crude implementation as follows and would like to know if there was a better and typesafe way to do this in Tanstack Router....Production build FOUC

Google Tags and scripts
What is params={true} in a Link component?
Is it possible to provide a manual name for the chunk(s) emitted for a code split route? (with Vite)
Remove tailing /
/ if the splat is undefined?
Lets say i have the route /search/$.tsx if i do
```
navigate({...router.invalidate() doesn't refresh the data from Route.useLoaderData()
loader on a Route that returns some data from context (e.g. auth data/logged in user). When I update the context and invalidate the router (using router.invalidate()), the TanStackRouterDevtools show the new data is in the context, and when I navigate to a new route the new data is displayed, but the data from Route.useLoaderData() isn't refreshed/updated (without a refresh or a navigation to then back to the page)Understanding Route loader query vs component hook query
Problem with displaying child routes in the Outlet
Is TanStack Router with SSR as good for SEO as Next.js?
Route Path in `createFileRoute` Keeps Auto-Correcting to Remove Layout Folder
I’m running into an issue with TanStack Router’s file-based routing. My file structure is: ``` src/routes/...