Skip to content
Dashboard

Web Application Firewall control now available with vercel.json

Engineering Intern
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"routes": [
{
"src": "/(.*)",
"has": [
{
"type": "header",
"key": {
"pre": "x-bad-header-"
}
}
],
"mitigate": {
"action": "deny"
}
}
]
}

Ready to deploy?