- Set FFMPEG_BIN and FFPROBE_BIN environment variables in Playwright workflow - Reduce memory allocation for audiobook and whisper API routes to 1024MB
11 lines
204 B
JSON
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
|
|
}
|
|
}
|
|
}
|