From 22a83eb3c265a3a3bb9fce45bd369a1d65417b7a Mon Sep 17 00:00:00 2001 From: Hamza Date: Mon, 30 Oct 2023 12:11:48 +0100 Subject: [PATCH] fix static file dirs path --- scaleout/stackn/templates/studio-settings-configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaleout/stackn/templates/studio-settings-configmap.yaml b/scaleout/stackn/templates/studio-settings-configmap.yaml index 5d77869..ccda775 100644 --- a/scaleout/stackn/templates/studio-settings-configmap.yaml +++ b/scaleout/stackn/templates/studio-settings-configmap.yaml @@ -167,7 +167,7 @@ data: STATIC_URL = '/static/' #Use in production and together with Nginx STATIC_ROOT = os.path.join(BASE_DIR, 'static/') - STATICFILES_DIRS = os.path.join(BASE_DIR, 'static/') + STATICFILES_DIRS = os.path.join(BASE_DIR, 'static') TEMPLATE_LOADERS = (