openclaw.ai/vercel.json
theonejvo 476ec4e2ab feat: add trust page i18n (Chinese, Korean, Japanese) with language switcher
Add translated trust and threat model pages for zh-CN, ko, and ja locales.
Each locale has full translations of UI text (JSON) and threat data (YAML).
Language switcher added to all pages including English. Vercel wildcard
rewrite added for trust.openclaw.ai subdomain locale paths.

Co-Authored-By: theonejvo <theonejvo@users.noreply.github.com>
2026-02-09 03:37:48 +11:00

27 lines
620 B
JSON

{
"routes": [
{
"src": "^/$",
"has": [{ "type": "host", "value": "trust.openclaw.ai" }],
"dest": "/trust"
},
{
"src": "^/(.+)$",
"has": [{ "type": "host", "value": "trust.openclaw.ai" }],
"dest": "/trust/$1"
},
{
"src": "^/(.*)$",
"has": [{ "type": "host", "value": "clawd.bot" }],
"status": 308,
"headers": { "Location": "https://openclaw.ai/$1" }
},
{
"src": "^/(.*)$",
"has": [{ "type": "host", "value": "www.clawd.bot" }],
"status": 308,
"headers": { "Location": "https://openclaw.ai/$1" }
}
]
}