mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import { QueryClient } from '@tanstack/react-query'
|
|
|
|
const reactQueryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
refetchOnWindowFocus: false,
|
|
},
|
|
},
|
|
})
|
|
|
|
export default reactQueryClient
|