From f95ab7465e8126b61b9375288009d188443cedb8 Mon Sep 17 00:00:00 2001 From: Mandel Olaiya Date: Thu, 14 May 2026 01:45:06 +0200 Subject: [PATCH] Include project static directory for manifest assets --- mandelstudio/settings/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mandelstudio/settings/base.py b/mandelstudio/settings/base.py index affc2b0..ca2bd3d 100644 --- a/mandelstudio/settings/base.py +++ b/mandelstudio/settings/base.py @@ -153,6 +153,7 @@ LANGUAGES = [ LOCALE_PATHS = [str(BASE_PATH / "locale")] STATIC_ROOT = str(BASE_PATH / "static") +STATICFILES_DIRS = [str(BASE_PATH / "mandelstudio" / "static")] MEDIA_ROOT = str(BASE_PATH / "media") PRIVATE_MEDIA_ROOT = str(BASE_PATH / "private")