wallets-api / client /src /lib /react-query.ts
z1amez's picture
v.1
2dddd1f
raw
history blame contribute delete
246 Bytes
import { QueryClient } from '@tanstack/react-query';
export const queryClient = new QueryClient({
defaultOptions: {
queries: {
retry: 1,
refetchOnWindowFocus: false,
staleTime: 1000 * 60 * 5, // 5 minutes
},
},
});