add default storage

This commit is contained in:
godd0t
2023-05-10 13:33:56 +02:00
parent 70a802350a
commit 4d34336f2a
2 changed files with 26 additions and 0 deletions

View File

@@ -1,6 +1,9 @@
from .base import * # noqa
STORAGES = {
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
"staticfiles": {
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
},