tRPC Endpoint를 /api/trpc로 변경

This commit is contained in:
static
2025-12-25 20:13:44 +09:00
parent 208252f6b2
commit f059f0d7c4
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ const createClient = (fetch: typeof globalThis.fetch) =>
createTRPCClient<AppRouter>({
links: [
httpBatchLink({
url: "/trpc",
url: "/api/trpc",
fetch,
}),
],