Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -11,7 +11,7 @@ function createApolloClient() { | ... | @@ -11,7 +11,7 @@ function createApolloClient() { |
11 | return new ApolloClient({ | 11 | return new ApolloClient({ |
12 | ssrMode: typeof window === "undefined", | 12 | ssrMode: typeof window === "undefined", |
13 | link: new HttpLink({ | 13 | link: new HttpLink({ |
14 | - uri: "http://localhost:5000/graphql", // Server URL (must be absolute) | 14 | + uri: "http://backend:5000/graphql", // Server URL (must be absolute) |
15 | credentials: "same-origin", // Additional fetch() options like `credentials` or `headers` | 15 | credentials: "same-origin", // Additional fetch() options like `credentials` or `headers` |
16 | }), | 16 | }), |
17 | cache: new InMemoryCache({ | 17 | cache: new InMemoryCache({ | ... | ... |
-
Please register or login to post a comment