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