Skip to content

Commit b974e86

Browse files
committed
feat: remove unused context processors
1 parent a3875c2 commit b974e86

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

config/context_processors.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

config/settings.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@
108108
"django.template.context_processors.request",
109109
"django.contrib.auth.context_processors.auth",
110110
"django.contrib.messages.context_processors.messages",
111-
"config.context_processors.static_version",
112111
],
113112
},
114113
},
@@ -180,16 +179,9 @@
180179
STATIC_ROOT = BASE_DIR / "staticfiles"
181180
STATIC_URL = "/static/"
182181

183-
# Cache busting version - increment this when CSS/JS changes
184-
STATIC_VERSION = str(int(time.time())) # or manually set like "1.0.1"
185-
186182
MEDIA_ROOT = BASE_DIR / "mediafiles"
187183
MEDIA_URL = "/media/"
188184

189-
# WhiteNoise configuration for media files
190-
WHITENOISE_USE_FINDERS = True
191-
WHITENOISE_AUTOREFRESH = True
192-
193185
# Django Tailwind CLI
194186
# https://django-tailwind-cli.readthedocs.io/latest/
195187

0 commit comments

Comments
 (0)