import { createTRPCProxyClient, httpBatchLink } from "@trpc/client"; import type { AppRouter } from "./server.js"; export const trpc = createTRPCProxyClient({ links: [ httpBatchLink({ url: "/api/trpc", }), ], });