#3023·swr

Clear Cache Hook

Author: daveycodezCreated Oct 2, 2024Updated Apr 17, 2026
bash
/** 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