mirror of
https://github.com/Jellify-Music/App.git
synced 2026-03-17 01:11:15 -05:00
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { QueryClient } from "@tanstack/react-query";
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
gcTime: (1000 * 60 * 24 * 24) * 5 // 5 days
|
|
}
|
|
}
|
|
}) |