trpcClientZS = trpcReactZS.createClient({
links: [
httpBatchLink({
url: `http://192.168.1.2:3000/trpc`,
fetch(url, options) {
return fetch(url, {
...options,
credentials: 'include'
})
},
})
],
transformer: SuperJSON
})
trpcClientZS = trpcReactZS.createClient({
links: [
httpBatchLink({
url: `http://192.168.1.2:3000/trpc`,
fetch(url, options) {
return fetch(url, {
...options,
credentials: 'include'
})
},
})
],
transformer: SuperJSON
})