Files
pbakaus_impeccable/vercel.json
T
Paul BakausandClaude Opus 4.5 a1a24daf3f Add cheatsheet tip to downloads section and fix Vercel 404
- Add download tip with cheatsheet link in downloads section
- Fix cheatsheet 404 on Vercel by adding rewrite rule
- Include cheatsheet.html in Bun build entrypoints

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 15:31:29 -08:00

15 lines
302 B
JSON

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