mirror of
https://gitlab.com/soapbox-pub/mkstack.git
synced 2025-08-27 04:59:22 +00:00
Improve queryClient options
This commit is contained in:
parent
e07e98c882
commit
344f12280c
10
src/App.tsx
10
src/App.tsx
@ -13,7 +13,15 @@ const defaultRelays = [
|
|||||||
'wss://ditto.pub/relay',
|
'wss://ditto.pub/relay',
|
||||||
];
|
];
|
||||||
|
|
||||||
const queryClient = new QueryClient();
|
const queryClient = new QueryClient({
|
||||||
|
defaultOptions: {
|
||||||
|
queries: {
|
||||||
|
refetchOnWindowFocus: false,
|
||||||
|
staleTime: 60000, // 1 minute
|
||||||
|
gcTime: Infinity,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
// NOTE: This file should normally not be modified unless you are adding a new provider.
|
// NOTE: This file should normally not be modified unless you are adding a new provider.
|
||||||
// To add new routes, edit the AppRouter.tsx file.
|
// To add new routes, edit the AppRouter.tsx file.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user