mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-09-07 00:13:32 +00:00
11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
import { QueryClient } from '@tanstack/react-query';
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
refetchOnWindowFocus: false,
|
|
retry: 1
|
|
}
|
|
}
|
|
});
|