From 4e4c8768f3bbe9ed2922499a5c7d38cdbe80706a Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Wed, 8 Aug 2018 18:59:47 +0200 Subject: [PATCH] Adjust static url --- 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 91e653db..9bd48e6f 100644 --- a/server/core/settings.py +++ b/server/core/settings.py @@ -198,7 +198,7 @@ SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_ROOT = os.path.join(BASE_DIR, 'static') -STATIC_URL = '/static/' +STATIC_URL = '/' STATICFILES_DIRS = ( os.path.join(BASE_DIR, '..', 'client/dist'),