swr-utils.ts 238 B

123456789
  1. import { SWRConfiguration } from 'swr';
  2. import axios from './axios';
  3. export const swrGlobalConfiguration: SWRConfiguration = {
  4. fetcher: url => axios.get(url).then(res => res.data),
  5. revalidateOnFocus: false,
  6. errorRetryCount: 1,
  7. };