From 4e30c55b6ccaa21088c8416ae58d43f2dc7b3a46 Mon Sep 17 00:00:00 2001 From: patrick Date: Wed, 2 Sep 2026 23:12:28 +0200 Subject: [PATCH] fix(docs): Swagger-Assets nach backend/static/ verschoben (nginx-Alias) Server-nginx hat bereits ein /static/-Alias auf backend/static/ (Uploads), nicht backend/app/static/. Assets lagen am falschen Pfad -> 404 hinter nginx. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_015Ahyx6D3r7G1EuAc42nezn --- backend/{app => }/static/swagger-ui/favicon.png | Bin .../{app => }/static/swagger-ui/redoc.standalone.js | 0 .../static/swagger-ui/swagger-ui-bundle.js | 0 backend/{app => }/static/swagger-ui/swagger-ui.css | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename backend/{app => }/static/swagger-ui/favicon.png (100%) rename backend/{app => }/static/swagger-ui/redoc.standalone.js (100%) rename backend/{app => }/static/swagger-ui/swagger-ui-bundle.js (100%) rename backend/{app => }/static/swagger-ui/swagger-ui.css (100%) diff --git a/backend/app/static/swagger-ui/favicon.png b/backend/static/swagger-ui/favicon.png similarity index 100% rename from backend/app/static/swagger-ui/favicon.png rename to backend/static/swagger-ui/favicon.png diff --git a/backend/app/static/swagger-ui/redoc.standalone.js b/backend/static/swagger-ui/redoc.standalone.js similarity index 100% rename from backend/app/static/swagger-ui/redoc.standalone.js rename to backend/static/swagger-ui/redoc.standalone.js diff --git a/backend/app/static/swagger-ui/swagger-ui-bundle.js b/backend/static/swagger-ui/swagger-ui-bundle.js similarity index 100% rename from backend/app/static/swagger-ui/swagger-ui-bundle.js rename to backend/static/swagger-ui/swagger-ui-bundle.js diff --git a/backend/app/static/swagger-ui/swagger-ui.css b/backend/static/swagger-ui/swagger-ui.css similarity index 100% rename from backend/app/static/swagger-ui/swagger-ui.css rename to backend/static/swagger-ui/swagger-ui.css