import merge from "lodash.merge"; const FetchWithCredentials = async (uri, options) => await fetch( uri, merge({}, { credentials: "include", redirect: "follow" }, options) ); export { FetchWithCredentials };