openreader/vercel.json
Richard R 260513ebaa ci(config): configure CI environment and optimize function memory
- Set FFMPEG_BIN and FFPROBE_BIN environment variables in Playwright workflow
- Reduce memory allocation for audiobook and whisper API routes to 1024MB
2026-02-15 11:33:46 -07:00

11 lines
204 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"functions": {
"app/api/audiobook/route.ts": {
"memory": 1024
},
"app/api/whisper/route.ts": {
"memory": 1024
}
}
}