File size: 313 Bytes
bbfde3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"version": 2,
"buildCommand": "echo 'No build needed'",
"builds": [
{
"src": "api/**/*.js",
"use": "@vercel/node",
"config": {
"includeFiles": "lib/**"
}
}
],
"routes": [
{
"src": "/api/(.*)",
"dest": "/api/$1.js"
}
]
}
|