Remove whitenoise compression storage

This commit is contained in:
2023-01-17 00:13:28 -05:00
parent e850d46539
commit 9d4db65b3c

View File

@ -217,10 +217,6 @@ STATIC_URL = "static/"
STATIC_ROOT = os.getenv(
"VROBBLER_STATIC_ROOT", os.path.join(PROJECT_ROOT, "static")
)
if not DEBUG:
STATICFILES_STORAGE = (
"whitenoise.storage.CompressedManifestStaticFilesStorage"
)
MEDIA_URL = "/media/"
MEDIA_ROOT = os.getenv(