diff --git a/backend/app/main.py b/backend/app/main.py index 4a02c2f..ce9c152 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -75,7 +75,7 @@ app.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) # Swagger/ReDoc-Assets lokal ausliefern statt von cdn.jsdelivr.net – Netzwerke ohne # CDN-Zugriff (Firewall/Proxy) zeigten sonst eine leere /docs-Seite. if not settings.is_production: - app.mount("/static", StaticFiles(directory="app/static"), name="static") + app.mount("/static", StaticFiles(directory="static"), name="static") @app.get("/docs", include_in_schema=False) async def custom_swagger_ui_html():