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
No TS checks on the Link component

ReferenceError: module is not defined
import {readFile} from 'node:fs/promises';
but this does not:...Client-only router context
<RouterProvider>
inside the React Context provider and passing the context
prop. https://tanstack.com/router/latest/docs/framework/react/guide/router-context#how-about-using-react-contexthooks
But in TanStack Start there is <StartClient>
instead of <RouterProvider>
and it doesn't take context
.
My use case right now is in migrating a Router app to Start so that we can get some dynamic SSR injection into the root route but have all other routes disable SSR with the new selective SSR. Our app's loaders can't be isomorphic so what I am doing now is creating a layout under the root route to initialize the client-side context values but these get recreated every time that beforeLoad
runs which is every navigation. This is different than the Router case where we would initialize the router with those context values so the initialization wouldn't be in a loader....Only generate ServerRoute with DELETE method will make 404 error
Retry next in middleware
next()
handler. My use case is to add retry logic for certain kinds of errors (in my case on the client, but it'd apply on the server too) that is encapsulated in the server fn, without having to move that logic up to say the query client.
Currently, it seems calling next
multiple times doesn't work, the successive calls just return undefined...Cant click button after following installation
Better way to get theme?
__root
during loader
, but every client-side navigation triggers it.
```tsx
export const Route = createRootRouteWithContext<RouterAppContext>()({...I got new error after update
i cannot find createServerFileRoute

Why is TSS using inline script tags to import script?
<script type="module" async="">import('/assets/main-foobar.js')</script>
. Is there a reason why SSR won't use standard <script src="..." type="module" async="></script>
tags? This will be really helpful to implement proper strict CSP. Thanks!Large monorepo/Next.js refactor to TSR questions/issues
Deploy with vercel throws 'This Serverless Function has crashed.'

Landing page downloads large bundle
Websocket connection to a route
Static server functions do not work on Netlify
Middleware losing method

Error importing `cloudflare:workers`
import { DurableObject } from "cloudflare:workers";
, which fails with the following error:
Error: Cannot find module 'cloudflare:workers' imported from '<path/to/sourcefile>`
Error: Cannot find module 'cloudflare:workers' imported from '<path/to/sourcefile>`
non serializable objects in Route Context
Render a specific component in ssr true page on client side
Clerk docs say server.ts, migration guide says src/server.tsx