From 7d7269386a3ceddb5f6e5bda27a488572bdb7524 Mon Sep 17 00:00:00 2001 From: Pablo Moreno Date: Wed, 19 Feb 2025 18:01:52 +0100 Subject: [PATCH] fix: build tailwind theme --- web/management/commands/build_tailwind_theme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/management/commands/build_tailwind_theme.py b/web/management/commands/build_tailwind_theme.py index 3e3c8c1..fde8195 100644 --- a/web/management/commands/build_tailwind_theme.py +++ b/web/management/commands/build_tailwind_theme.py @@ -26,7 +26,7 @@ class Command(BaseCommand): def handle(self, *args, **options): web_settings = WebSettings.load() - path = os.path.join(settings.BASE_DIR, "theme", "static", "css", "main.css") + path = os.path.join(settings.BASE_DIR, "web", "static", "css", "main.css") colors = [] for color_name, data in web_settings.theme_colors.items():