mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 01:29:55 +08:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
import { QueryClient } from '@tanstack/react-query'
|
|
|
|
const reactQueryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
refetchOnWindowFocus: false,
|
|
},
|
|
},
|
|
})
|
|
|
|
export default reactQueryClient
|