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
Migrage from react-router to TanStack with vite@6.0.5. TanStack dev server can't start normally

Server Fn error return types
What's the best place to initialise a server-side locale translator function?
use-intl for my i18n (which is the core library from next-intl. I want to initialise the translator function and inject it into the request context so I can use it in the backend, but have it load the necessary data from user preferences only once.
```
export const Route = createRootRouteWithContext<MyRouterContext>()({
beforeLoad: async ({ context }) => {...Sitemap is hanging
vite build --mode production everything works very nicely up until the point where the sitemap is generated. At that point, it just hangs indefinitely.
```
[sitemap] Building Sitemap...
[sitemap] Writing sitemap XML at dist/client/sitemap.xml...Updating search params with `navigate({ search: ... })` causes sluggish UX
navigate({ search: ... }) to update search params causes sluggish UX (~300-500ms delay). Using TanStack Start + Convex.
...error component not receiving the error on page change
how are people creating / accessing a query collection when used in conjunction with tanstack start?
2nd css link tag added on client
Loading state while loader data is loading
loading.tsx in Next.js?
I've tried defining a Route.pendingComponent but that doesn't seem to work - It just keeps the request loading for 2 seconds before returning the full value...
Start RC does not pre-render
Exposure of codes to the client
How to update router context globally within `beforeLoad`?
"/admin/_authenticated". I want to check context's isAuthenticated property in beforeLoad method of this route and update the context in such a way that the updated context is immediately reflected everywhere, as if I'm updating a global variable. Global variable technique works fine, but I think it's not a clean way of doing that.
My use case: Implementing cookie-based auth. Backend is separate (Express). The idea is to check whether session is active on initial load, and if so, to update isAuthenticated key of context, accordingly; otherwise, to redirect to login route. The problem is that the context keeps being stale on beforeLoad calls executed when redirecting user among sibling routes.
Another approach would be to use a custom React Context hook, but there is no convenient way to "inject" the hook into the router like it's done in Tanstack Router (example)....Tanstack Start Vercel Deployment - Too many directs?
How to add react compiler to Tanstack Start RC?
Migration Guide to go from Tanstack Start Beta to RC?
[Build] tanstack-start-injected-head-scriptRollup failed to resolve import "tanstack-start-injected-
TanStack Start and Emotion with SSR and streaming
useSuspenseQuery. If the component unsuspends before the streaming completes, that seems to be when the hydration mismatch occurs. But I'm also not sure I'm following it correctly š ...Is it possible to fetch some data in loader with cloudflare workers?
typesafe api routes
