From 6eff9f645683201a562f389c02bba6011a0b0e4a Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Tue, 5 Nov 2024 10:15:38 -0500 Subject: [PATCH] Update STATIC_ROOT path to use 'staticfiles' directory --- backend/server/main/settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/server/main/settings.py b/backend/server/main/settings.py index d947ec6..ce84fd8 100644 --- a/backend/server/main/settings.py +++ b/backend/server/main/settings.py @@ -132,14 +132,13 @@ USE_TZ = True BASE_DIR = Path(__file__).resolve().parent.parent -STATIC_ROOT = BASE_DIR / "static" +STATIC_ROOT = BASE_DIR / "staticfiles" STATIC_URL = '/static/' MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media') STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')] - # TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')] TEMPLATES = [