import { trpc } from "@/lib/trpc"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { httpBatchLink } from "@trpc/client"; import { createRoot } from "react-dom/client"; import superjson from "superjson"; import { SITE_CONFIG } from "@shared/siteConfig"; import App from "./App"; import "./index.css"; document.title = SITE_CONFIG.htmlTitle; const queryClient = new QueryClient(); const trpcClient = trpc.createClient({ links: [ httpBatchLink({ url: "/api/trpc", transformer: superjson, fetch(input, init) { return globalThis.fetch(input, { ...(init ?? {}), credentials: "include", // Evita cache HTTP de GET do tRPC: sem isto, o browser pode devolver // `auth.me` null de antes do login mesmo já com cookie de sessão. cache: "no-store", }); }, }), ], }); createRoot(document.getElementById("root")!).render( );