You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/shared/cache/index.ts

12 lines
205 B
TypeScript

import { QueryClient } from 'react-query';
const queryClient = new QueryClient({
defaultOptions: {
queries: {
staleTime: 10 * 1000, // 默认缓存10s
},
},
});
export { queryClient };