vercel.json 228 B

1234567891011
  1. {
  2. "$schema": "https://openapi.vercel.sh/vercel.json",
  3. "framework": "nextjs",
  4. "installCommand": "pnpm install",
  5. "buildCommand": "pnpm build",
  6. "functions": {
  7. "app/api/**/*.ts": {
  8. "maxDuration": 300
  9. }
  10. }
  11. }