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/client/shared/cache/index.ts

12 lines
215 B
TypeScript

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