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
Route preloading causing an infinite loop.

code splitting file based routing doesn't work for memory history?
autoCodeSplitting: true in vite, it turns out it doesn't work
2. i try to turn off autoCodeSplitting: false then suffix all route with .lazy.tsx, like from "features.tsx to features.lazy.tsx,still doesn't work
3. i try to make it into 2 files, from features.tsx tofeatures/index.tsx and features/index.lazy.tsx
4. i also try to use lazy component: lazy(() =>import("./index.lazy").then((mod) => ({ default: mod.BlogAds }))), still doesn't work
...Link component not needing params for a dynamic route and working correctly!
Route typesafety isn't working
masked subroute in file based routing
/filters or /?show_filters that shows the filter drawer. however, i want to mask the route. https://tanstack.com/router/latest/docs/framework/react/guide/route-masking
i can't seem to figure out how to set it up as a sub route (index.filters.tsx has router set the path to /index/filters)...invalidate data in router context
Is it possible to render the notFoundComponent inside of my auth only layout?
vinxi dev & tsr generate different `routeTree.gen.ts`
tsr generate to generate the routeTree.gen.ts but it seems like this produces a different routeTree, even if we provide a tsr.config.json.
Is there a way to trigger tsr so it provides the same options that the vite plugin does?...TanStack Router node_modules error

Index and auth index routes
/ where there is a button to login and once the user is logged in we are still on the / route but it actually loads the /_auth route?How should I handle layout for login page?
validateSearch resets router context
Typing a factory function for createFileRoute
createFileRoute with some options predefined, but I am not able to type it correctly with all the generics. Here is an example what I am trying to accomplish:
```ts
function customCreateFileRoute(path) {
return (options) => {...Layout route
/account that has two children so /account/settings and /account/edit.
I'm using file based routing:
```
routes/
āāā account/...how to utilize the router to navigate ?

File based pathless wrapping route in folder
Prevent useBlocker from showing alert on reload

How to generate html page for defined routes in build?
beforeLoad or loader for authentication redirection

my first layout