From d58d60efc6e8087bfdde14c83c7989799bf6a568 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Sun, 23 Jan 2022 15:10:11 +0100 Subject: [PATCH 1/1] Added STATIC_ROOT --- pcdenotes/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pcdenotes/settings.py b/pcdenotes/settings.py index 7c51c45..3ec7465 100644 --- a/pcdenotes/settings.py +++ b/pcdenotes/settings.py @@ -120,6 +120,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/3.2/howto/static-files/ STATIC_URL = '/static/' +STATIC_ROOT = BASE_DIR / 'static' # Default primary key field type # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field -- 2.34.1