mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-05-07 05:59:35 -05: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
|
|
}
|
|
}
|
|
}); |