Files
br-os/vercel.json
Alexa Louise 2530487c1e feat: Add repo infrastructure - LICENSE, vercel.json, .github/workflows/ci-cd.yml
🤖 Generated with BlackRoad Repo Buildout Master

Co-Authored-By: Cece <noreply@blackroad.io>
2025-12-11 07:25:24 -06:00

34 lines
484 B
JSON

{
"version": 2,
"builds": [
{
"src": "package.json",
"use": "@vercel/next"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/$1"
}
],
"env": {
"NODE_ENV": "production"
},
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
]
}
]
}