diff --git a/djangoproject/settings/prod.py b/djangoproject/settings/prod.py index b9a199912..4aea8d4bd 100644 --- a/djangoproject/settings/prod.py +++ b/djangoproject/settings/prod.py @@ -52,6 +52,9 @@ SESSION_COOKIE_SECURE = True STORAGES = { + "default": { + "BACKEND": "django.core.files.storage.FileSystemStorage", + }, "staticfiles": { "BACKEND": "django.contrib.staticfiles.storage.ManifestStaticFilesStorage", },