mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-05-18 21:48:49 -05:00
abb61a42a4
also moar haptic feedback all around
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
|
|
}
|
|
}
|
|
}); |