Fix STATIC_ROOT

This commit is contained in:
Jesús 2022-01-14 00:49:28 -05:00
parent 1e7330a2ef
commit a57161b217
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -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/'