diff --git a/project/wsgi.py b/project/wsgi.py index fd86e6e..7c2f625 100644 --- a/project/wsgi.py +++ b/project/wsgi.py @@ -13,6 +13,4 @@ from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings") -from whitenoise.django import DjangoWhiteNoise - -application = DjangoWhiteNoise(get_wsgi_application()) +application = get_wsgi_application()