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
Notify users frontend version changed
Type Inference from `createServerFn`
Tanstack start deployment using bun.
TanStack Start + Nitro: 404 pages showing 'Cannot GET' instead of notFoundComponent
No .output after build
ERR_MODULE_NOT_FOUND after 1.36 --> 1.39 upgrade
vite build --mode production)and deploy the application I now receive this:
```
Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/Users/jingles/Documents/workspace/my-app/dist/server/server.js' imported from /Users/jingles/Documents/workspace/my-app/node_modules/@tanstack/start-plugin-core/dist/esm/preview-server-plugin/plugin.js
at finalizeResolution (node:internal/modules/esm/resolve:275:11)...How to return 404 status from Server Function without breaking the response payload?
404 status from a createServerFn.
When I use setResponseStatus(404) and then throw an error, instead of receiving the error payload in the client, the server returns a generic HTML 404 page saying "Cannot GET /_serverFn/...".
It seems like setting the 404 status causes the underlying server to treat the server function endpoint itself as "not found", masking the actual application error I want to send....Preventing raw Zod error exposure in createServerFn validation

Is there a way to attach stuff to "window.__stuff__" during SSR?
Including X-Request-Id in response header + request context
How do I connect to Hyperdrive using Tanstack Start?
I selected shadcn in the pnpm create cli but it got ignored
tailwindcss db and clerk ,db, tailwindcss and clerk got installed but shadcn not.Error: Could not resolve entry for router entry: router in PROJECT_ROOT/src
src/router.tsx treated as a special file ?
In the Authenticated Routes example, there is no router.tsx, only a main.tsx
https://tanstack.com/router/latest/docs/framework/react/examples/authenticated-routes?panel=code
But when I try to use only the main.tsx file, the app breaks with a very obscure message
```...Hydration error even when not rendering anything ?
Prerendering dynamic pages
fetch('/products') and pass id's to the prerender config?
That's nextjs equivalent however I did not find it for tanstack start
https://nextjs.org/docs/app/api-reference/functions/generate-static-params
...Applying middleware to the public folder
show detail error in browser?

getHeaders Import Not Found in @tanstack/react-start/server

Outlets remounting full url
Setting status-code from loader
setResponseStatus does nothing.
I need to set the status code to 404, but without throwing an error in the loader. Ideally, I would like to render the page as usual using the loader's result, but use the status code to signal indexers, etc., that the site is "expired".
Alternative approaches: ...