From d39ccb46f56812acc60561aadcd665485dc93c46 Mon Sep 17 00:00:00 2001 From: zein Date: Mon, 3 Nov 2025 06:55:44 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=D0=B8=20?= =?UTF-8?q?=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83=D1=80=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DJ_Hentai_manga/wsgi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()) +