We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52c02a8 commit 291f80cCopy full SHA for 291f80c
2 files changed
core/settings.py
@@ -56,7 +56,12 @@
56
57
STATIC_ROOT = BASE_DIR / "staticfiles"
58
STATIC_URL = "/static/"
59
-STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
+
60
+STORAGES = {
61
+ "staticfiles": {
62
+ "BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
63
+ },
64
+}
65
66
CBV_SOURCES = {
67
"django.views.generic": "Generic",
requirements.prod.txt
@@ -18,7 +18,7 @@ dj-database-url==0.5.0
18
# via environs
19
dj-email-url==1.0.6
20
21
-django==4.1.13
+django==4.2.20
22
# via
23
# -r requirements.prod.in
24
# django-extensions
0 commit comments