Files
thrilltrack-explorer/vercel.json
gpt-engineer-app[bot] eb726d3f83 Fix infinite query loop
2025-11-05 01:55:53 +00:00

47 lines
951 B
JSON

{
"installCommand": "bun install",
"buildCommand": "bun run build",
"rewrites": [
{
"source": "/sitemap.xml",
"destination": "https://api.thrillwiki.com/functions/v1/sitemap"
},
{
"source": "/",
"destination": "/api/ssrOG"
},
{
"source": "/:path((?!.*\\.).*)",
"destination": "/api/ssrOG"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
},
{
"source": "/(.*)\\.(js|css|jpg|jpeg|png|gif|svg|ico|woff|woff2|ttf|eot|webp)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}