diff --git a/src/modules/web_app/app.py b/src/modules/web_app/app.py index b5da064..728d0f3 100644 --- a/src/modules/web_app/app.py +++ b/src/modules/web_app/app.py @@ -12,7 +12,14 @@ from .views import routes def get_app() -> FastAPI: app = FastAPI() - app.mount("/", StaticFiles(directory="frontend", html=True), name="frontend") + app.mount( + "/", + StaticFiles( + directory="modules/web_app/frontend", + html=True + ), + name="frontend" + ) auth.handle_errors(app)