Vibhanshu Rana

Results 2 comments of Vibhanshu Rana

Please remove **.js** extension if you are using **core.cjs.js** Example `import ApolloClientCore from '@apollo/client/core/core.cjs.js';` => `import ApolloClientCore from '@apollo/client/core/core.cjs';` https://github.com/apollographql/apollo-client/releases/tag/v3.5.4 _Since Apollo Client v3.5.0, CommonJS bundles provided by @apollo/client use...

@productdevbook maybe it will work for you. ``` // eslint-disable-next-line import/extensions import ApolloClientCore from '@apollo/client/core/core.cjs'; const { ApolloClient, InMemoryCache, createHttpLink, } = ApolloClientCore; ```