zhengyiming
2025-04-01 8f7bae4a2b70bb3aeb1c2289a7f5dd6a826e88de
apps/h5/src/constants/query.ts
New file
@@ -0,0 +1,10 @@
import { QueryClient } from '@tanstack/vue-query';
export const myClient = new QueryClient({
  defaultOptions: {
    queries: {
      refetchOnWindowFocus: false,
      retry: false,
    },
  },
});