-
Alexander Schoch authoredAlexander Schoch authored
apollo.js 191 B
import { ApolloClient, InMemoryCache } from "@apollo/client";
const apolloClient = new ApolloClient({
uri: "/api/graphql",
cache: new InMemoryCache(),
});
export default apolloClient;