mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-12 22:26:38 +03:00
Vercel serverless functions are bundled separately and don't automatically include project directories. Added includeFiles config to ensure source/ and dist/ are available to API handlers at runtime. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
214 B
JSON
12 lines
214 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"buildCommand": "bun run build",
|
|
"outputDirectory": "build",
|
|
"functions": {
|
|
"api/**/*.js": {
|
|
"includeFiles": "source/**,dist/**"
|
|
}
|
|
}
|
|
}
|
|
|