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
Basic HTTP Authentication
What is the tanstack way of doing loading? (Example: Next.js has loading.tsx)
How can I route app.website.com and website.com differently in the same TanStack Start app?
Cannot read properties of undefined (reading 'isDehydrated')! (tRPC)

Footer with sum
Making the api backend typesafe
createServerFileRoute()
and call my server-functions from here to also have a REST version of my stuff....Changing base path does not seem to work for ingress
customer.company.com/app-a
, customer.company.com/app-b
, customer.company.com/app-c
. We use ingress to manage routing when users visit specific domain/folder combinations.
However, there seems to be an issue where I can't figure out how to tell TanStack Start to understand this setup:
...Getting headers inside of an SSR component
"Cannot read properties of null" error in a test that renders a component that uses useState
TypeError: Cannot read properties of null (reading 'useState')
when running a test (Vitest/Testing Library) that renders a component that uses a hook that uses useState
and useEffect
hooks. The first version I noticed this happening on is the 1.129.1
release of Start, so I'm hoping that may narrow things down and point to what might be causing this. I've tried the latest release of Start (1.130.15
) and several prior to that and all result in the same error.Build failing because of parsing error
.po
translation files, which I am dynamically importing.
My Vite config setup:
```
export default defineConfig({...How to Add a Catch-All Error Handler Middleware in createServerFileRoute?
Problem using a serverFn in a route loader
Better Vercel Observability
__nitro
...
Persist Sidebar Toggle State Across SSR and Client Hydration in React with Zustand?
session is always called on hover
Cannot read properties of undefined (reading 'isDehydrated')

Deployment help
vite start
but that does not work.
The docs outline that we need to use npm run .output/server/index.mjs
but that does not work either.
..."Cannot use 'in' operator to search for '.' in ./index.js"
Vercel 404 Error After Deployment

Dehydrating/hydrating queryClient
ssr: "data-only"
?
Currently I don't do any hydration. This means I'm fetching data first on the server, then I throw it all away and fetch everything again on the client, completely negating any benefits of running the loader on the server.
I've read some docs:...