fix: reduce upload failures on Cloudflare Workers

Optimize zip validation, lower max upload to 25MB, raise CPU limit, and show clear errors when Cloudflare returns HTML error pages.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-06 14:14:43 +08:00
parent 1cfa823a95
commit 8d6e2e00b8
9 changed files with 212 additions and 56 deletions

View File

@@ -2,6 +2,10 @@ name = "web2app"
main = "worker/src/index.ts"
compatibility_date = "2024-11-01"
# 付费 Workers 可提高 CPU 上限,避免大 zip 上传时触发 Cloudflare 1102
[limits]
cpu_ms = 300000
[assets]
directory = "./frontend/dist"
not_found_handling = "single-page-application"
@@ -15,6 +19,6 @@ migrations_dir = "worker/migrations"
[vars]
DEFAULT_BRANCH = "main"
MAX_UPLOAD_MB = "50"
MAX_UPLOAD_MB = "25"
GITHUB_OWNER = "shumengya"
GITHUB_REPO = "Web2App"