Files
web2app/wrangler.toml
shumengya 8d6e2e00b8 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>
2026-06-06 14:14:46 +08:00

24 lines
619 B
TOML

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"
# 运行 `wrangler d1 create web2app` 后将输出的 database_id 替换下方占位符
[[d1_databases]]
binding = "DB"
database_name = "web2app"
database_id = "e45bfa13-525b-465c-8dbb-b1a716751b44"
migrations_dir = "worker/migrations"
[vars]
DEFAULT_BRANCH = "main"
MAX_UPLOAD_MB = "25"
GITHUB_OWNER = "shumengya"
GITHUB_REPO = "Web2App"