mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-12 06:06:37 +03:00
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>
15 lines
313 B
JSON
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" }
|
|
]
|
|
}
|
|
|