Date: 2026-01-09 00:00
Summary: Served the static home page by moving OpenAPI to /docs and binding Worker assets to public/.
[question] 打开http://localhost:8787/没有看到静态首页,为什么,需要修正
[try to solve]
Cause: the Worker root path was occupied by OpenAPI docs, and static assets were not bound, so public/index.html was never served.
Fix:
- Move OpenAPI docs to
/docs. - Enable Wrangler
assetsbinding topublic/, and fall back to static assets on 404 in the Worker.
[actions]
- Updated
wrangler.jsonc:assets.directory ./public/, binding nameASSETS - Updated
src/index.ts: OpenAPI at/docs; importASSETSand fall back to static assets on 404