github-readme-stats/.github/workflows/deploy-prep.py
2025-02-05 00:14:30 +05:30

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