MQL5-Google-Onedrive/vercel.json
copilot-swe-agent[bot] 247620b714 Add Vercel configuration and documentation site
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-13 15:32:25 +00:00

38 lines
777 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"version": 2,
"name": "mql5-google-onedrive-docs",
"buildCommand": "echo 'No build needed for static site'",
"outputDirectory": "public",
"public": true,
"cleanUrls": true,
"trailingSlash": false,
"git": {
"deploymentEnabled": true
},
"redirects": [
{
"source": "/docs/:path*",
"destination": "/documentation/:path*"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
}
]
}