Files
pbakaus_impeccable/vercel.json
T
Paul BakausandClaude Opus 4.6 c0ba2b8124 Fix Vercel API endpoints for unified skills directory structure
The migration to source/skills/{name}/SKILL.md broke the serverless
functions which still expected flat .md files in source/commands/.
Also adds scripts/** to Vercel includeFiles for patterns API.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 14:55:32 -08:00

15 lines
313 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "bun run build",
"outputDirectory": "build",
"functions": {
"api/**/*.js": {
"includeFiles": "source/**,dist/**,scripts/**"
}
},
"rewrites": [
{ "source": "/cheatsheet", "destination": "/cheatsheet.html" }
]
}