fix: increase trpc max duration (#1121)

## Description

Increase the max duration of the TRPC API endpoint to 120 seconds.
This commit is contained in:
Lucas Smith
2024-04-27 21:38:21 +10:00
committed by GitHub

View File

@@ -3,7 +3,7 @@ import { createTrpcContext } from '@documenso/trpc/server/context';
import { appRouter } from '@documenso/trpc/server/router';
export const config = {
maxDuration: 60,
maxDuration: 120,
api: {
bodyParser: {
sizeLimit: '50mb',