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
prettier on lint-staged throws an error with files starting with $, have you handled that?
src/routes/$id.tsx is parsed as src/routes/.tsx which obviously does not exist and prettier can't find it...weird "The above error occurred in the <MatchInner> component" error
only change url after a before load is successful
Foo expects you to always be on /foo
But I'm finding that when I navigate to /bar from within the application, my Foo page has a brief moment where the current path is /bar . ...Router with TRPC
How to hide the devtools in deployed apps?
Why is parent route's loader triggered when children change

Context & protected routes
localhost/account then the context is null for like 0.2s....File-based routing: "/" to show landing page for users and dashboard/app for authenticated users
DefaultGlobalNotFound in production
Get params without including it in file name.
http://localhost:5173/auth/login?error=already_exists
I want to get the error value without having the $error in my file name....Sharing routes between parents (or loading parallel routes)
Router Context Error: Property does not exist on type {}
How to give better names for route.tsx / route.lazy.tsx

Convenient search param setter?
navigate({ search: prev => ({ ...prev, property: value })) everywhere in the onChange handlers..
...Routing doesn't works!
Should all path params be required for relative navigation?
/customers/$customerId/ (customerRoute)
/customers/$customerId/orders/$orderId (customerOrderRoute)
...Is there any way to programmatically trigger redirect using file based routing?

Weird bug that cannot be reproduced in stackblitz and wasn't happening with react-router-dom
tasks list and the second is /tasks/$taskId.
$taskId is the child of /tasks route.
When going DIRECTLY within the URL for example /tasks/4 and press the X button to close the sheet i see the network that refetches data for this route, like the component remounts on close.
I'm using file-based routing for this. Can someone test it in their local to see if its happening? I use react-query inside the /tasks/$taskId route....__root and context
main.tsx
```ts
const router = createRouter({
routeTree,
defaultPendingComponent: () => (...