From c2ccf2b31185a747a20b0002b6efcb9351f1edfa Mon Sep 17 00:00:00 2001 From: "Mees, T.D. (Ty)" Date: Wed, 4 Sep 2024 17:11:28 +0200 Subject: [PATCH] fix: fixed whitenoise not finding static files Doh --- testidp/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testidp/settings.py b/testidp/settings.py index 29fa784..8609e6e 100644 --- a/testidp/settings.py +++ b/testidp/settings.py @@ -177,7 +177,7 @@ # https://docs.djangoproject.com/en/4.0/howto/static-files/ STATIC_URL = "/static/" -STATIC_ROOT = "public/static/" +STATIC_ROOT = "/static/" # Security # https://docs.djangoproject.com/en/2.0/topics/security/