diff --git a/client/src/pages/index.vue b/client/src/pages/index.vue index 225eafa3..f38da9e8 100644 --- a/client/src/pages/index.vue +++ b/client/src/pages/index.vue @@ -31,5 +31,4 @@ title: 'Modules with Apollo' } } - diff --git a/server/core/views.py b/server/core/views.py index 07928be1..0d0241d0 100644 --- a/server/core/views.py +++ b/server/core/views.py @@ -17,8 +17,8 @@ class PrivateGraphQLView(LoginRequiredMixin, GraphQLView): def home(request): if settings.DEBUG: try: - return HttpResponse(requests.get('http://localhost:8080/{}'.format(request.get_full_path())).text) + return HttpResponse(requests.get('http://localhost:3000/{}'.format(request.get_full_path())).text) except Exception as e: - print('Can not connect to dev server at http://localhost:8080:', e) + print('Can not connect to dev server at http://localhost:3000:', e) return render(request, 'index.html', {})