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()