Files
danghuangshang/vercel.json
wanikua c5803d376e feat: 添加组织架构编辑器到公网
- 添加 public/org/ 目录,包含完整的可视化编辑器
- 添加 vercel.json 配置,处理 /org 路由
- 支持 5 个预设模板(明朝内阁、唐朝三省、现代企业等)
- 支持拖拽编辑、导出 JSON 配置

访问:https://danghuangshang.com/org/
2026-03-26 11:38:30 +00:00

20 lines
312 B
JSON

{
"rewrites": [
{
"source": "/org/:path*",
"destination": "/org/index.html"
}
],
"headers": [
{
"source": "/org/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}