From 1c233fd70be1ecca45aa8395a2fe4df9f5e5a0d4 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Sat, 15 Jun 2024 11:31:38 +0200 Subject: [PATCH] Added missing default storage backend in prod settings --- djangoproject/settings/prod.py | 3 +++ 1 file changed, 3 insertions(+) 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", },