From 95f2a8253293e59b93c044005a3267114ff84b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhn-Vitus=20Sa=C3=9F?= Date: Sun, 6 Apr 2025 22:15:10 +0200 Subject: [PATCH] Exclude t-input as it causes problems when deployed --- django/core/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django/core/settings.py b/django/core/settings.py index f8244b3..d9525dd 100644 --- a/django/core/settings.py +++ b/django/core/settings.py @@ -142,6 +142,9 @@ STATIC_URL = '/static/' STATIC_ROOT = BASE_DIR / "staticfiles" STATICFILES_DIRS = [BASE_DIR / 'static'] +# Exclude development CSS files from collectstatic +STATICFILES_IGNORE_PATTERNS = ['t-input.css'] + # Default primary key field type # https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field