Skip to content
Snippets Groups Projects
apollo.js 191 B
import { ApolloClient, InMemoryCache } from "@apollo/client";

const apolloClient = new ApolloClient({
  uri: "/api/graphql",
  cache: new InMemoryCache(),
});

export default apolloClient;