Add back default file storage

This commit is contained in:
Bruno Alla 2023-07-21 09:32:00 +01:00
parent ee655c3013
commit 9b6f93bafa
No known key found for this signature in database

View File

@ -107,6 +107,9 @@ AZURE_CONTAINER = env("DJANGO_AZURE_CONTAINER_NAME")
# ------------------------
STORAGES = {
{%- if cookiecutter.use_whitenoise == 'y' %}
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
"staticfiles": {
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
},