From a3cfe1b602ce045b17a873a37040091ec0f571cb Mon Sep 17 00:00:00 2001 From: anuraghazra Date: Wed, 5 Feb 2025 00:14:30 +0530 Subject: [PATCH] chore: change maxDuration --- .github/workflows/deploy-prep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-prep.py b/.github/workflows/deploy-prep.py index 794c19a..28cf7e8 100644 --- a/.github/workflows/deploy-prep.py +++ b/.github/workflows/deploy-prep.py @@ -4,7 +4,7 @@ file = open('./vercel.json', 'r') str = file.read() file = open('./vercel.json', 'w') -str = str.replace('"maxDuration": 10', '"maxDuration": 30') +str = str.replace('"maxDuration": 10', '"maxDuration": 15') file.write(str) file.close()