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
Router defining root route as parent route for all file routes
Breadcrumbs solution requiring 3 files per component?!
Redirecting /admin/ to /admin/displays
Tanstack Start using solid and Tauri
`loader` runs on every transition despite `loaderDeps` usage
Search-Typing issue
How to infer the type of Route component with the context of it?
createRootRouterWithContext Interface cannot be Named Type Issue
createRootRouterWithContext with an interface, but I run into the following issue when defining my router:
Exported variable 'router' has or is using name 'MyRouterContext' from external module "../routes/__root" but cannot be named. (ts 4023)
Exported variable 'router' has or is using name 'MyRouterContext' from external module "../routes/__root" but cannot be named. (ts 4023)
Is it okay to use `CatchBoundary` component as a generic error boundary component?
CatchBoundary is safe to use as opposed to using something like react-error-boundary...@tanstack/react-router streaming ssr
Best way to handle tabs in TanStack Router – path or search param?

IIFE build option with code splitting?

Random issues around importing inside of multiple @tanstack/x packages
Uncaught (in promise) SyntaxError: The requested module 'http://localhost:3000/node_modules/use-sync-external-store/shim/with-selector.js?v=d6fcbb5d' doesn't provide an export named: 'useSyncExternalStoreWithSelector'
Uncaught (in promise) SyntaxError: The requested module 'http://localhost:3000/node_modules/use-sync-external-store/shim/with-selector.js?v=d6fcbb5d' doesn't provide an export named: 'useSyncExternalStoreWithSelector'
Show loading state on expensive rerender when changing search params through router.navigate()
isPending prop to render a loading spinner. However, it looks like I got the wrong approach, as it doesn't seem to help at all. Here's a small demo:
https://codesandbox.io/p/github/revosw/tanstack-start-search-param-loading/main
...SEO in TanStack Router
- https://github.com/catalinpit/learn-platform/blob/main/client/src/routes/courses/%24courseId.tsx) that I want to appear in search engines.
How should I go about this? Or should I "upgrade" to TanStack Start?...Defining custom link prop types without breaking type inference
Props = { onClick: () => void } | { href: UrlObject }. I'm trying to replace the link part with tanstack router links, so I tried the following:
type SomeButton = { onClick: () => void } | Pick<LinkComponentProps, "to" | "search" | "params">
type SomeButton = { onClick: () => void } | Pick<LinkComponentProps, "to" | "search" | "params">
Configuring arrow-function style for route file auto generated code
customScaffolding configuration which I assume could be used for this, but I'd prefer not to muck around with the default template for a small thing as such. Would it be possible to include this as a config option for the generated code?
```ts
declare const tanstackRouter: (options?: Partial<{...Route.useParams() giving Unsafe assignment of an error typed value
