OpChan/vercel.json
2025-10-29 18:46:44 +05:30

14 lines
308 B
JSON

{
"version": 2,
"installCommand": "npm ci --workspaces --include=optional",
"buildCommand": "cd app && npm run build",
"outputDirectory": "app/dist",
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }],
"functions": {
"app/dist/**": {
"runtime": "nodejs20.x"
}
}
}