mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-12 06:06:37 +03:00
Fix: Include source and dist directories in Vercel serverless functions
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>
This commit is contained in:
co-authored by
Claude Opus 4.5
parent
ca46647a73
commit
11f9b284ff
+6
-1
@@ -1,6 +1,11 @@
|
||||
{
|
||||
"$schema": "https://openapi.vercel.sh/vercel.json",
|
||||
"buildCommand": "bun run build",
|
||||
"outputDirectory": "build"
|
||||
"outputDirectory": "build",
|
||||
"functions": {
|
||||
"api/**/*.js": {
|
||||
"includeFiles": "source/**,dist/**"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user