mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-07 03:49:25 -05:00
a00cd9b8c5
This reverts commit 45422e0e14.
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import { QueryClient } from "@tanstack/react-query";
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
gcTime: (1000 * 60 * 24 * 24) * 5 // 5 days
|
|
}
|
|
}
|
|
}); |