Don't suggest npm ci

This commit is contained in:
Jack Kingsman
2026-03-13 14:46:55 -07:00
parent cb9c9ae289
commit bd19015693
4 changed files with 9 additions and 7 deletions
+3 -1
View File
@@ -164,5 +164,7 @@ def register_frontend_missing_fallback(app: FastAPI) -> None:
async def frontend_not_built():
return JSONResponse(
status_code=404,
content={"detail": "Frontend not built. Run: cd frontend && npm ci && npm run build"},
content={
"detail": "Frontend not built. Run: cd frontend && npm install && npm run build"
},
)