mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-01-06 13:50:58 -06:00
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import { QueryClient } from "@tanstack/react-query";
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
gcTime: (1000 * 60 * 60), // 1 hour
|
|
staleTime: (1000 * 60 * 30) // 30 minutes
|
|
}
|
|
}
|
|
}); |