mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
import { QueryClient } from '@tanstack/react-query';
|
|||
|
|||
export const queryClient = new QueryClient({
|
|||
defaultOptions: {
|
|||
queries: {
|
|||
staleTime: 30_000,
|
|||
refetchOnWindowFocus: true,
|
|||
retry: 1,
|
|||
},
|
|||
},
|
|||
});
|