mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-22 03:39:12 -06:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import { QueryClient } from "@tanstack/react-query";
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
gcTime: (1000 * 60 * 10), // 10 minutes
|
|
staleTime: (1000 * 60 * 10) // 10 minutes
|
|
}
|
|
}
|
|
}); |