We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fa95cf commit 3e6c7bcCopy full SHA for 3e6c7bc
1 file changed
packages/faustwp-core/src/client.ts
@@ -102,7 +102,9 @@ export function createApolloClient(authenticated = false) {
102
103
let apolloClientOptions: ApolloClientOptions<NormalizedCacheObject> = {
104
ssrMode: typeof window === 'undefined',
105
- connectToDevTools: typeof window !== 'undefined',
+ devtools: {
106
+ enabled: typeof window !== 'undefined'
107
+ },
108
link: linkChain,
109
cache: new InMemoryCache(inMemoryCacheObject).restore(windowApolloState),
110
};
0 commit comments