Clear Cache Hook
Author: daveycodezCreated Oct 2, 2024Updated Apr 17, 2026
/** Hook for clearing cache */
export const useClearCache = () => {
const { mutate } = useSWRConfig()
const clearCache = () => {
mutate(() => true, undefined, false)
}
return clearCache
}Plz export this hook directly from SWR so we can keep our codebases cleaner
Source: vercel/swr