Files
github-stats-extended/backend/.github/workflows/deploy-prep.py
T

11 lines
188 B
Python

import os
file = open('./vercel.json', 'r')
str = file.read()
file = open('./vercel.json', 'w')
str = str.replace('"maxDuration": 10', '"maxDuration": 15')
file.write(str)
file.close()