This commit is contained in:
2026-06-30 12:22:43 +01:00
parent 2fa93998ab
commit c7249065dd
+5 -3
View File
@@ -146,9 +146,11 @@ STATIC_URL = "/static/"
STATIC_ROOT = BASE_DIR / "staticfiles" STATIC_ROOT = BASE_DIR / "staticfiles"
STATICFILES_STORAGE = ( STORAGES = {
"whitenoise.storage.CompressedManifestStaticFilesStorage" "staticfiles": {
) "BACKEND": "whitenoise.storage.CompressedStaticFilesStorage",
},
}
MEDIA_URL = "/media/" MEDIA_URL = "/media/"
MEDIA_ROOT = "/app/media" MEDIA_ROOT = "/app/media"