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 there an option to lazy-load a group of routes in one chunk?
Unable to navigate using relative links
``
function DeviceLink({ id, name }: DeviceLinkProps) {
const location = useLocation()
console.log(
Location: ${JSON.stringify(location)}`)...Generated tree file isnt being built with Vite
Is there a hook to access router context ?
Lazy file routes don't have the same config as regular file routes?

Blocker does not guard browser back like react-router
react-router
is since there it works as one might expect there? ...React Router does not render redirected route after query error
beforeLoad / validateSearch compatibility issue?
beforeLoad
(e.g. context
) that the type of search parameters provided via inference validateSearch
is dropped in consumers utilizing useSearch
?
If not, how might one leverage beforeLoad
with provided parameters without losing the type inference for search parameters on the same route?
Minimal Repro: https://stackblitz.com/edit/tanstack-router-nrzryj?file=src%2Fmain.tsx...Bug: Never ending "pending" state when notFound is thrown from a splat route
/browse/album/123
URL in StackBlitz
Expected result
A "Not found message"...
Bug: `throw notFound()` in `beforeLoad()` when preloading instantly shows the error
/browse
2. Hover over "Browse 404"...How to hide network request?
Getting the type for the "to" prop
What would cause the `loader` to be called without `context`?
context
parameter in the loader
function of my route, but randomly, it sometimes throws the error (destructured parameter).context is undefined
. Refreshing the page fixes the issue, but I am not sure why the issue is happening in the first place. My beforeLoad
method always returns a value (unless the user isn't authenticated, in which case it throws a redirect, but that is not happening here), so from what I can tell, context
should never be undefined
...
```tsx
export const Route = createFileRoute('/orders/search')({
validateSearch: orderSearchParamsSchema,...OAuth login flow with TanStack router
Do layouts work in router folder groups?

Pathless layout with standard layout
/auth/register
/auth/login
/auth/register
/auth/login
Navigate should use input type params not output type params.
navigate
still require search params even if they are marked as optional and resolved with default or catch. Unless I'm missing something. Stackblitz with example: https://stackblitz.com/edit/tanstack-router-vkzaga?file=src%2Froutes%2Fposts.tsx
```typescript
import * as React from 'react';
import { createFileRoute, Link, Outlet } from '@tanstack/react-router';...Best practice for route alias?
/playlists/$playlistId
/library/$playlistId
Is there any best practice to have minimal boilerplate to make this happen? Right now I've defined a PlaylistView
component in routes/-shared/PlaylistView.tsx
which also exports a re-usable "route config" object for the loader. ...Possible to escape parent nesting inside a folder?
Lazy file route use cases