blob: 4cfca79ba4b6eefd9b9f8b42f251cd3392a78d0c (
plain)
1
2
3
4
5
6
7
8
9
|
import { ApolloClient, InMemoryCache } from '@apollo/client/core';
import { apollo as apolloConfig } from './config';
const cache = new InMemoryCache();
export const client = new ApolloClient({
cache,
...apolloConfig
});
|