`useSuspenseQuery` still runs a fetch on SSR even when setting `ssr: false` in the api config
Beside double-fetching, this causes issues during rendering if you have auth on your routes as the SSR server doesn't seem to pass through the cookies to the tRPC route.
Using Next.js 14.0.3 with the pages directory.
Repro here: https://github.com/relsunkaev/trpc-ssr-suspense-repro
GitHub
GitHub - relsunkaev/trpc-ssr-suspense-repro
Contribute to relsunkaev/trpc-ssr-suspense-repro development by creating an account on GitHub.
Solution:Jump to solution
Answered in the issue - not a bug. Use
Suspense.CSROnly
from @suspensive/react1 Reply
Solution
Answered in the issue - not a bug. Use
Suspense.CSROnly
from @suspensive/react