mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-20 09:50:26 -06:00
11 lines
342 B
TypeScript
11 lines
342 B
TypeScript
import { QueryClient } from "@tanstack/react-query";
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
// refetchOnWindowFocus: false,
|
|
gcTime: Infinity, // disable
|
|
// staleTime: (1000 * 60 * 60 * 1), // 1 hour, this can be refreshed manually anyways
|
|
}
|
|
}
|
|
}); |