From a57161b2172a70046f653157f414152300de183e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 14 Jan 2022 00:49:28 -0500 Subject: [PATCH] Fix STATIC_ROOT --- django/personalsite/settings.py.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/personalsite/settings.py.example b/django/personalsite/settings.py.example index 12f22f8..4a8eb50 100644 --- a/django/personalsite/settings.py.example +++ b/django/personalsite/settings.py.example @@ -125,7 +125,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/2.1/howto/static-files/ STATIC_URL = '/static/' -MEDIA_ROOT = os.path.join(BASE_DIR, 'static') +STATIC_ROOT = os.path.join(BASE_DIR, 'static') # Media files MEDIA_URL = '/media/'