From b3aa82cc661cef7bf364b96c9c23bca47b1267e5 Mon Sep 17 00:00:00 2001 From: Matchu Date: Thu, 27 Aug 2020 21:44:54 -0700 Subject: [PATCH] enable Apollo dev tools in production I'm doing this to see if I can give Chips a cute way to hack into local data :p --- src/app/apolloClient.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/apolloClient.js b/src/app/apolloClient.js index cbfdcda..7160af5 100644 --- a/src/app/apolloClient.js +++ b/src/app/apolloClient.js @@ -48,4 +48,5 @@ const httpLink = createHttpLink({ uri: "/api/graphql" }); export default new ApolloClient({ link: persistedQueryLink.concat(httpLink), cache: new InMemoryCache({ typePolicies }), + connectToDevTools: true, });