diff --git a/src/utils/graphql.ts b/src/utils/graphql.ts index 70a926a..6f062b1 100644 --- a/src/utils/graphql.ts +++ b/src/utils/graphql.ts @@ -3,7 +3,7 @@ import { ApolloClient, createHttpLink, InMemoryCache } from '@apollo/client/core export const apolloClient = () => { const httpLink = createHttpLink({ - uri: 'http://10.8.0.13:8080/graphql', + uri: 'http://192.168.1.84/:32180/graphql', credentials: 'include', // Include credentials for cross-origin requests }); diff --git a/src/utils/network.ts b/src/utils/network.ts index 9f1783f..3012ef3 100644 --- a/src/utils/network.ts +++ b/src/utils/network.ts @@ -1,7 +1,7 @@ import axios from 'axios' const instance = axios.create({ - baseURL: 'http://10.8.0.13:8443' + baseURL: 'http://192.168.1.84/:32180' }) const getUid = async () => await instance.get('/uid')