docs(readme): 添加一键部署指南和安全配置

- 新增 Vercel、Netlify、Cloudflare Pages 一键部署按钮与命令行方法
- 添加 Netlify 重定向与安全头配置文件
- 添加 Vercel 部署配置文件支持静态站点托管
- 更新文档中的引号为英文格式以保持一致性
- 补充部署相关常见问题说明
This commit is contained in:
hehh
2025-11-25 14:40:02 +08:00
parent 24d2321218
commit b6d0f51a98
6 changed files with 87 additions and 3 deletions

15
vercel.json Normal file
View File

@@ -0,0 +1,15 @@
{
"version": 2,
"builds": [
{
"src": "**/*.html",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/$1"
}
]
}