From 1eee181e219dfd993d396ac3169e7aad3dd285eb Mon Sep 17 00:00:00 2001 From: Factiven Date: Sun, 16 Jul 2023 22:35:39 +0700 Subject: Update v3.6.4 - Added Manga page with a working tracker for AniList user - Added schedule component to home page - Added disqus comment section so you can fight on each other (not recommended) - Added /id and /en route for english and indonesian subs (id route still work in progress) --- lib/apolloClient.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 lib/apolloClient.js (limited to 'lib/apolloClient.js') diff --git a/lib/apolloClient.js b/lib/apolloClient.js deleted file mode 100644 index 8a25156..0000000 --- a/lib/apolloClient.js +++ /dev/null @@ -1,20 +0,0 @@ -import { ApolloClient, DefaultOptions, InMemoryCache } from "@apollo/client"; - -const defaultOptions = { - watchQuery: { - fetchPolicy: "no-cache", - errorPolicy: "ignore", - }, - query: { - fetchPolicy: "no-cache", - errorPolicy: "all", - }, -}; - -const client = new ApolloClient({ - uri: "https://graphql.anilist.co", - cache: new InMemoryCache(), - defaultOptions: defaultOptions, -}); - -export { client }; -- cgit v1.2.3