From 13e38737fb60544880da1cfb87d01113d9e0a3c4 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 27 Aug 2021 21:17:10 +0200 Subject: [PATCH] changed graphql path --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 5163497..3f84bcf 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,7 +6,7 @@ import { ApolloClient, ApolloProvider, InMemoryCache } from "@apollo/client" import "react-contexify/dist/ReactContexify.css" const client = new ApolloClient({ - uri: "/graphql", + uri: "/api/graphql", cache: new InMemoryCache() })