Fix Engine static asset resolution

This commit is contained in:
2025-10-22 18:25:21 -06:00
parent 7aa6474a6d
commit 978688ca62
3 changed files with 48 additions and 1 deletions

View File

@@ -112,6 +112,9 @@ def _resolve_static_root(project_root: Path) -> Path:
return Path(candidate).expanduser().resolve()
candidates = (
project_root / "Engine" / "web-interface" / "build",
project_root / "Engine" / "web-interface" / "dist",
project_root / "Data" / "Engine" / "WebUI" / "build",
project_root / "Data" / "Server" / "web-interface" / "build",
project_root / "Data" / "Server" / "WebUI" / "build",
project_root / "Data" / "WebUI" / "build",