1.1.0 • Published 12 months ago
trpc-local-link v1.1.0
import { createTRPCClient } from '@trpc/client';
import { localLink } from 'trpc-local-link';
import { type AppRouter, appRouter } from '@/api';
export const trpcClient = createTRPCClient<AppRouter>({ links: [localLink(appRouter)] });