fix: 完善Vercel部署配置,排除不必要的文件

- 排除 app/ 目录(Next.js API路由,Vercel静态部署不需要)
- 排除 test-*.html 测试文件,避免暴露测试页面
- 减少部署体积,提高安全性
This commit is contained in:
wing
2025-11-10 15:24:53 +08:00
parent e3e2b085f0
commit a38a772beb
+2
View File
@@ -6,10 +6,12 @@ server/
docker/
scripts/
admin/
app/
.github/workflows/
# 测试相关
test/
test-*.html
**/__tests__/**
**/*.test.ts
**/*.test.tsx