import { createTRPCProxyClient, httpBatchLink } from '@trpc/client'; import type { AppRouter } from 'server/app'; export const trpc = createTRPCProxyClient({ links: [ httpBatchLink({ url: 'http://localhost:3000', }), ], }); export default trpc;