From e84c13c40a07e43285ac62b6c41ee58c472586cc Mon Sep 17 00:00:00 2001 From: ben8 Date: Sun, 1 Jun 2025 18:27:06 +0200 Subject: [PATCH] settings --- django/core/settings.py | 2 +- django/static/css/tailwindcss | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 django/static/css/tailwindcss diff --git a/django/core/settings.py b/django/core/settings.py index 76882be..a96a3e0 100644 --- a/django/core/settings.py +++ b/django/core/settings.py @@ -159,7 +159,7 @@ STATIC_ROOT = BASE_DIR / "staticfiles" STATICFILES_DIRS = [BASE_DIR / 'static'] # WhiteNoise configuration -STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage' +STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' WHITENOISE_SKIP_COMPRESS_EXTENSIONS = ['css', 'js'] # Return 404 instead of 500 for missing files WHITENOISE_MISSING_FILE_ERRNO = None diff --git a/django/static/css/tailwindcss b/django/static/css/tailwindcss new file mode 100644 index 0000000..e69de29 -- 2.49.1