BankBot-AI / frontend /vercel.json
mohsin-devs's picture
Deploy to HF
a282d4b
raw
history blame contribute delete
494 Bytes
{
"framework": "nextjs",
"buildCommand": "npm run build",
"outputDirectory": ".next",
"installCommand": "npm install --legacy-peer-deps",
"env": {
"NEXT_PUBLIC_API_URL": "@bankbot_api_url"
},
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" }
]
}
]
}