apollo-cache-instorage
apollo-cache-instorage copied to clipboard
nextjs integration
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);