fix: add cloud web access route alias

This commit is contained in:
Codex Agent
2026-06-05 09:54:11 +08:00
parent 40f798eb0b
commit 9840dcc269
3 changed files with 35 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ export const cloudWebDistBuildCommand = "cd web/hwlab-cloud-web && bun run build
export const cloudWebDistFreshnessCommand = cloudWebDistBuildCommand;
export const cloudWebAppSourceFiles = Object.freeze(["src/main.tsx", "src/App.tsx"]);
export const cloudWebDistRuntimeFiles = Object.freeze(["index.html", "app.js", "assets/index.css", "assets/favicon.svg", "help.md"]);
export const cloudWebDistAliasFiles = Object.freeze(["gate/index.html", "diagnostics/gate/index.html", "help/index.html", "skills/index.html"]);
export const cloudWebDistAliasFiles = Object.freeze(["gate/index.html", "diagnostics/gate/index.html", "help/index.html", "skills/index.html", "access/index.html"]);
type FreshnessStatus = "pass" | "blocked";