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