You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
suspense:true, // This activates urql's Suspense mode on the server-side
129
-
exchanges: [cacheExchange, ssr, fetchExchange]
123
+
exchanges: [cacheExchange, ssr, fetchExchange],
130
124
});
131
125
132
126
constelement= (
@@ -577,6 +571,51 @@ is an uncommon scenario, and we consider it "unsafe" so evaluate this carefully
577
571
When this does seem like the appropriate solution any component wrapped with `withUrqlClient` will receive the `resetUrqlClient`
578
572
property, when invoked this will create a new top-level client and reset all prior operations.
579
573
574
+
## TanStack Router / TanStack Start
575
+
576
+
If you're using SSR with [TanStack Router](https://tanstack.com/router) or [TanStack Start](https://tanstack.com/start) you can use the `@urql/tanstack-react-router` package.
577
+
578
+
To set up `@urql/tanstack-react-router`, first we'll install `@urql/tanstack-react-router` and `urql`:
0 commit comments