From 8c51d4d679f2ec611a4f4a4fec13bc810e606324 Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Tue, 30 Sep 2025 00:42:07 +0200 Subject: [PATCH] Corrected Static files (again?) --- VorgabenUI/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VorgabenUI/settings.py b/VorgabenUI/settings.py index 57f3d78..5907dac 100644 --- a/VorgabenUI/settings.py +++ b/VorgabenUI/settings.py @@ -136,7 +136,7 @@ USE_TZ = True STATIC_URL = '/static/' #STATIC_ROOT="/home/adebaumann/VorgabenUI/staticfiles/" -STATIC_ROOT="/app/static/" +STATIC_ROOT="/app/staticfiles/" STATICFILES_DIRS= ( os.path.join(BASE_DIR,"static"), )