synapsecns/sanguine

View on GitHub
packages/explorer-ui/graphql/apollo-client.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ApolloClient, InMemoryCache } from '@apollo/client'
import { API_URL } from '@graphql'

// const client = new ApolloClient({
//   uri: API_URL,
//   cache: new InMemoryCache(),
//   ssrMode: true,
//   fetchPolicy: 'network-only',
//   fetchOptions: {
//     mode: 'no-cors',
//   },
// })

// export default client