Files
ai-course/vercel.json
KQL bf26b58e29 chore: 添加 Vercel 部署配置
- 配置 vercel.json 用于优化部署
- 设置路由重写规则支持 React Router

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 14:43:30 +08:00

13 lines
225 B
JSON

{
"buildCommand": "npm run build",
"outputDirectory": "build",
"devCommand": "npm start",
"framework": "create-react-app",
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}