Fix static files

This commit is contained in:
Yohann D'ANELLO 2020-05-05 07:32:23 +02:00
parent 2857c571ab
commit 42c75015f9
2 changed files with 4 additions and 4 deletions

View File

@ -161,10 +161,6 @@ LOCALE_PATHS = [os.path.join(BASE_DIR, "locale")]
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, "media")

View File

@ -13,3 +13,7 @@ DATABASES = {
}
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]