From 14b06c809d081eb1d5b6a7e54b4c9ddd48a1c4b4 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Wed, 8 Aug 2018 18:09:02 +0200 Subject: [PATCH] Update static folder in settings --- server/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core/settings.py b/server/core/settings.py index 93fd5a54..91e653db 100644 --- a/server/core/settings.py +++ b/server/core/settings.py @@ -201,7 +201,7 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static') STATIC_URL = '/static/' STATICFILES_DIRS = ( - os.path.join(BASE_DIR, '..', 'client/dist/static'), + os.path.join(BASE_DIR, '..', 'client/dist'), ) if not TEST: