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 wildcat in Route Masking?
Layout Pathless Route seems to not work

How to change header/footer when using defaultNotFoundComponent

Trying to identify source of error: TypeError: globalThis.app.config is undefined
Provide a different basepath for a set of subcomponents
Impossible to have Index route working
/app/routes/index.tsx
```
import { createFileRoute } from '@tanstack/react-router'...
How to Handle notFound() Globally Instead of Checking 404 in Each Loader?

Beginner: wrong beforeload being trigger ?
Incorrect routetree.gen.ts structure

implement supabase auth into router context
Set default child route
group.$id
and the child routes group.$id.$members
and group.$id.posts
. When a user navigates to just https://example.com/group/123
in their browser, I have it set up to automatically redirect them to a "default" child route, such as https://example.com/group/123/posts
. To do this, I check in group.$id
's beforeLoad function for if it is the "leaf" of the URL, as in the current route is none of its children, since the beforeLoad also runs for all of the child routes. If it is the current leaf route, I throw redirect({ to: "/group/$id/posts", params })
to redirect the user automatically. I wrote a custom function to detect if the current route is the left or not as shown below:
```ts...Match route on search params?
/books
should render component <BookList />
```createRoute({...npm create @tanstack/router VS create-tsrouter-app
Run examples using pnpm
Is it a bad practice to call `useQuery` in route components?
loader
in the first place.
Can we just call useQuery
and call it a day?...Typescript Error with LinkComponent.. Best Practice?
Navigating to link shows previous page while fetching new page.
Micrsoft Authentication library not working properly for hashed route with tanstack router
_auth.tsx
file and _authenticated.tsx
file for the protected route and their code is same with condition change as shown:
```import { createFileRoute, redirect } from "@tanstack/react-router";
export const Route = createFileRoute("/_authenticated")({
beforeLoad: async ({ context, location }) => {
if (!context.auth.getActiveAccount()) { // Here this is the condition change for the auth file....flaky e2e tests?
Monorepo-examples and HMR