fix(settings): Make static files collection work in prod

This commit is contained in:
Tom Hubrecht 2025-06-02 18:17:43 +02:00
parent d50a51312e
commit 275da6490d
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -49,6 +49,7 @@ INSTALLED_APPS = [
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
# Custom apps
"django_browser_reload",
"bulma",
@ -229,7 +230,6 @@ UNFOLD = {
if DEBUG:
INSTALLED_APPS += [
"django.contrib.staticfiles",
"debug_toolbar",
]