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
path: '/', is generated unexpectedly

Trailing slash when SSR, otherwise it's ignored
Using Router with React Context/Hooks
How to show root level page not found when I have nested routes with pathless route.
/auth/* or /auth/login/* or /auth/signup/*
```
/
βββ about/
βββ auth/...Bypass pendingMs for certain links
pendingMs for that page either just to avoid it, because then the page will not show it's loading state on entry, which we do want.
So basically we're looking for this behaviour:
* When navigating to that page, fall back pendingComponent until the data has loaded
* When navigating within that page (applying search params), never fall back to pendingComponent...can useSearch be used from inside a portal?
Could not find a nearest match!
I'm using just strict false as the useSearch parameters, inspecting the error I think I found why this is happening, inside the useMatch function called by the useSearch, its not returning a match (image 1) since my nearestMatchId is /category/_category/$casual (which is the page I was previously on) and state.matches only includes root route and the route im going to....
How to catch chunk loading issues and reload gracefully?
window: 'vite:preloadError'. For reference, I'll just copy the explanation from the vite docs:
When a new deployment occurs, the hosting service may delete the assets from previous deployments. As a result, a user who visited your site before the new deployment might encounter an import error.https://vite.dev/guide/build.html#load-error-handling When using tanstack/router, the loading of route chunks seems to be handled by tanstack instead of Vite and this event is not dispatched. (Tell me if I'm wrong here, but I couldn't catch it)....
zodValidator in Route.useSearch return different types
Cannot get route type for some routes
campaignDraftsRoute not satisfying TRoute extends AnyRoute but other routes are?
I have the following file route:...Can I add custom information to RouteOptions?
createFileRoute (or createLazyFileRoute) that I can then access from the route tree data from useRouter or similar?
Something like this, perhaps?...Route Re-rendering when using query params on same path
Router with azure msal-browser & msal-react
uninitialized_public_client_application: You must call and await the initialize function before attempting to call any other MSAL API. For more visit: aka.ms/msaljs/browser-errors
uninitialized_public_client_application: You must call and await the initialize function before attempting to call any other MSAL API. For more visit: aka.ms/msaljs/browser-errors
Dynamic value of useSearch() from?
Deploying to Netlify and error decoding lambda response errors
Is there a way to change the default navigation behavior to preserve search params?
search={(n) => n}
search={(n) => n}
How do I show a toast from loader error?
useEffect to make fetch data and if there was any error used catch to show a toast
```ts
useEffect(() => {
const fetch = async () => {
try {...How to access path params from inside child or grand child which in separate file?
Anyone move from NextJS -> Router? How big of a PITA was it?
how to navigate to dynamic route using hard-coded path?
blogs/$id and I wanna navigate to /blogs/1
when I did this navigate({ to: '/blogs/1',}); I get error
```...Not Found "Fuzzy" mode (default) not bubbling to the root not found component
