diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/cli/src/lib/trpc.ts | 1 | ||||
| -rw-r--r-- | apps/web/lib/providers.tsx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/cli/src/lib/trpc.ts b/apps/cli/src/lib/trpc.ts index aa7aec21..27082b10 100644 --- a/apps/cli/src/lib/trpc.ts +++ b/apps/cli/src/lib/trpc.ts @@ -10,6 +10,7 @@ export function getAPIClient() { links: [ httpBatchLink({ url: `${globals.serverAddr}/api/trpc`, + maxURLLength: 14000, transformer: superjson, headers() { return { diff --git a/apps/web/lib/providers.tsx b/apps/web/lib/providers.tsx index 9c937281..b4066808 100644 --- a/apps/web/lib/providers.tsx +++ b/apps/web/lib/providers.tsx @@ -68,6 +68,7 @@ export default function Providers({ httpBatchLink({ // TODO: Change this to be a full URL exposed as a client side setting url: `/api/trpc`, + maxURLLength: 14000, transformer: superjson, }), ], |
