diff options
author | Jesús <heckyel@hyperbola.info> | 2022-01-14 00:49:28 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-01-14 00:49:28 -0500 |
commit | a57161b2172a70046f653157f414152300de183e (patch) | |
tree | 1241966f7c94f7160762ea7374b7a1fd6be41590 /django | |
parent | 1e7330a2ef9ac359267c622cbed2b1a3647826f1 (diff) | |
download | personal-site-a57161b2172a70046f653157f414152300de183e.tar.lz personal-site-a57161b2172a70046f653157f414152300de183e.tar.xz personal-site-a57161b2172a70046f653157f414152300de183e.zip |
Fix STATIC_ROOT
Diffstat (limited to 'django')
-rw-r--r-- | django/personalsite/settings.py.example | 2 |
1 files changed, 1 insertions, 1 deletions
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/' |