mirror of
https://ghfast.top/https://github.com/aeroxw/easy_tdx_max.git
synced 2026-09-12 19:14:19 +08:00
根因:PyPI wheel 只有 Python 包,不含前端 dist。_resolve_web_dist_dir 三级探测(env/_MEIPASS/仓库根)在 PyPI 安装环境下全失败返回 None, StaticFiles 不挂载,GET / 返回 404。 修复: - pyproject.toml hatchling force-include 把 web-ui/dist 映射到包内 easy_tdx/web/dist - publish.yml 在 python -m build 前先 npm ci && npm run build - _resolve_web_dist_dir 新增第 4 级探测:包内 easy_tdx/web/dist 验证:本地构建 wheel 含 4 个前端文件,模拟 PyPI 安装后第 4 级探测 成功找到 dist。907 测试全过。