mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-29 02:42:47 -04:00
* improve docs * in-app changelog * derive site changelogs from github releases * cleanup + static changelog generation * metadata * fix metadata fns * update tauri handler
13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
import { QueryClient } from '@tanstack/react-query';
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
networkMode: 'always'
|
|
},
|
|
mutations: {
|
|
networkMode: 'always'
|
|
}
|
|
}
|
|
});
|