From 9d4db65b3c1813db8dc69b89b4ffd8bc16ec2dda Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 17 Jan 2023 00:13:28 -0500 Subject: [PATCH] Remove whitenoise compression storage --- vrobbler/settings.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vrobbler/settings.py b/vrobbler/settings.py index 6691276..d499c73 100644 --- a/vrobbler/settings.py +++ b/vrobbler/settings.py @@ -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(