todo-api / phase-3 /frontend /vercel.json
Nanny7's picture
Phase 4: Infrastructure, Docker, Kubernetes, Chatbot with Qwen API
e566277
{
"buildCommand": "npm run build",
"outputDirectory": ".next",
"framework": "nextjs",
"installCommand": "npm install",
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=()"
}
]
}
],
"rewrites": [
{
"source": "/api/:path*",
"destination": "https://ammaraak-todo-app-backend.hf.space/api/:path*"
}
]
}