Files
TrueGrowth/vercel.json

34 lines
748 B
JSON

{
"buildCommand": "NODE_OPTIONS='--max-old-space-size=4096' pnpm run build:web",
"outputDirectory": "dist/apps/web",
"installCommand": "pnpm install",
"framework": null,
"rewrites": [
{
"source": "/api/truemodel/:path*",
"destination": "https://truemodel.benchu.cloud/:path*"
},
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/ai-image-generator.html",
"destination": "/home.html",
"permanent": true
},
{
"source": "/flowchart-maker.html",
"destination": "/home.html",
"permanent": true
},
{
"source": "/mindmap-maker.html",
"destination": "/home.html",
"permanent": true
}
]
}