movie-web/vercel.json

50 lines
944 B
JSON
Raw Permalink Normal View History

2024-03-01 18:17:09 +01:00
{
2024-03-16 08:42:34 +01:00
"rewrites": [
{
"source": "/(.*)",
"destination": "/"
}
],
2024-03-15 23:25:21 +01:00
"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": "Cache-Control",
"value": "public, max-age=0, s-maxage=0, must-revalidate"
}
]
},
{
"source": "/manifest.webmanifest",
"headers": [
{
"key": "Content-Type",
"value": "application/manifest+json"
}
]
},
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, s-maxage=31536000, immutable"
}
]
}
]
2024-03-01 18:17:09 +01:00
}