diff --git a/DJ_Hentai_manga/wsgi.py b/DJ_Hentai_manga/wsgi.py index 60ee780..662674a 100644 --- a/DJ_Hentai_manga/wsgi.py +++ b/DJ_Hentai_manga/wsgi.py @@ -10,7 +10,9 @@ https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/ import os from django.core.wsgi import get_wsgi_application +from django.contrib.staticfiles.handlers import StaticFilesHandler os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DJ_Hentai_manga.settings') -application = get_wsgi_application() +application = StaticFilesHandler(get_wsgi_application()) +