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