40 lines
935 B
TypeScript
40 lines
935 B
TypeScript
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 App from "./App";
|
|
import "./index.css";
|
|
|
|
const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
retry: 1,
|
|
staleTime: 30_000,
|
|
},
|
|
},
|
|
});
|
|
|
|
const trpcClient = trpc.createClient({
|
|
links: [
|
|
httpBatchLink({
|
|
url: "/api/trpc",
|
|
transformer: superjson,
|
|
fetch(input, init) {
|
|
return globalThis.fetch(input, {
|
|
...(init ?? {}),
|
|
credentials: "include",
|
|
});
|
|
},
|
|
}),
|
|
],
|
|
});
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<trpc.Provider client={trpcClient} queryClient={queryClient}>
|
|
<QueryClientProvider client={queryClient}>
|
|
<App />
|
|
</QueryClientProvider>
|
|
</trpc.Provider>
|
|
);
|