import { httpBatchLink } from "@trpc/client"; import { createTRPCNext } from "@trpc/next"; import type { AppRouter } from "../server/routers/_app"; import serverConfig from "@/lib/config"; export const trpc = createTRPCNext({ config(_opts) { return { links: [ httpBatchLink({ url: `${serverConfig.api_url}/api/trpc`, }), ], }; }, });