apollo-cache-instorage icon indicating copy to clipboard operation
apollo-cache-instorage copied to clipboard

nextjs integration

Open tafelito opened this issue 5 years ago • 0 comments

Since the InStorageCache requires a storage compatible with WebStorage, how would integrate this with nextjs?

doing this won't work

const cache = new InStorageCache({
    storage: isServer() ? <???> : window.localStorage,
    addPersistField: true,
    shouldPersist: PersistLink.shouldPersist,
  }).restore(initialState);

tafelito avatar Dec 19 '19 13:12 tafelito