24 lines
666 B
TypeScript
Executable File
24 lines
666 B
TypeScript
Executable File
//deploy vm
|
|
import { ApolloClient, createHttpLink, InMemoryCache } from '@apollo/client/core'
|
|
|
|
export const apolloClient = () => {
|
|
const httpLink = createHttpLink({
|
|
uri: import.meta.env.VITE_APP_GRAPHQL_ENDPOINT,
|
|
credentials: 'include' // Include credentials for cross-origin requests
|
|
})
|
|
|
|
const apolloClient = new ApolloClient({
|
|
cache: new InMemoryCache(),
|
|
link: httpLink,
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Accept-Encoding': 'gzip, deflate',
|
|
'Cache-Control': 'no-cache',
|
|
Connection: 'keep-alive',
|
|
'Content-Type': 'application/json'
|
|
// Add other headers as needed
|
|
}
|
|
})
|
|
return apolloClient
|
|
}
|