feat: INIT PROJECT.

This commit is contained in:
Ivan Li
2021-04-18 11:18:29 +08:00
parent c7c5495a88
commit ad5b852822
22 changed files with 30290 additions and 70 deletions

View File

@ -0,0 +1,6 @@
import { ApolloClient, InMemoryCache } from "@apollo/client";
export const client = new ApolloClient({
uri: "/api/graphql",
cache: new InMemoryCache(),
});