UNPKG

@waiting/fetch

Version:

HTTP fetch API for browser and Node.js. Handle 302/303 redirect correctly on Node.js

18 lines (13 loc) 300 B
import type { Options } from './types.js' export const initialOptions: Options = { url: '', dataType: 'json', keepRedirectCookies: false, method: 'GET', processData: true, timeout: Infinity, // cache: 'default', credentials: 'same-origin', mode: 'cors', redirect: 'follow', }