Files
spacedrive/apps/desktop/src/query.ts
Brendan Allan f05f6563b6 [ENG-1290] In-app changelog + GitHub releases as CMS (#1602)
* improve docs

* in-app changelog

* derive site changelogs from github releases

* cleanup + static changelog generation

* metadata

* fix metadata fns

* update tauri handler
2023-10-18 04:26:20 +00:00

13 lines
212 B
TypeScript

import { QueryClient } from '@tanstack/react-query';
export const queryClient = new QueryClient({
defaultOptions: {
queries: {
networkMode: 'always'
},
mutations: {
networkMode: 'always'
}
}
});