diff --git a/server/core/views.py b/server/core/views.py index df66e487..7dbc1de0 100644 --- a/server/core/views.py +++ b/server/core/views.py @@ -16,7 +16,7 @@ class PrivateGraphQLView(LoginRequiredMixin, GraphQLView): def home(request): if settings.SERVE_VIA_WEBPACK: try: - res = requests.get('http://localhost:8080/{}'.format(request.get_full_path())) + res = requests.get('http://localhost:8080{}'.format(request.get_full_path())) headers = res.headers content_type = headers.get('content-type', 'text/html') return HttpResponse(res.text, content_type=content_type)