hasari-api / apps /web /vercel.json
erdoganpeker's picture
fix(vercel): move vercel.json into apps/web (Root Directory)
22e7694
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"version": 2,
"framework": "nextjs",
"regions": ["cdg1"],
"github": {
"silent": false,
"autoJobCancelation": true
},
"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" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=()" },
{ "key": "Strict-Transport-Security", "value": "max-age=63072000; includeSubDomains; preload" }
]
},
{
"source": "/_next/static/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
}
],
"redirects": [
{ "source": "/home", "destination": "/", "permanent": true }
]
}