mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-12 06:06:37 +03:00
- Add missing /api/patterns.js endpoint (was causing 404) - Fix Tailwind CSS: compile with @tailwindcss/cli instead of Bun virtual module - Update API handlers to use standard Vercel function export format - Configure vercel.json with proper Bun runtime (runtime: "bun@1") - Add @tailwindcss/cli to devDependencies - Add generated styles.css to .gitignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
275 B
JSON
15 lines
275 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"buildCommand": "bun run build",
|
|
"outputDirectory": "public",
|
|
"functions": {
|
|
"api/**/*.js": {
|
|
"runtime": "bun@1"
|
|
}
|
|
},
|
|
"rewrites": [
|
|
{ "source": "/api/(.*)", "destination": "/api/$1" }
|
|
]
|
|
}
|
|
|