Skip to Content
🎉 We are hiring! You want to work on a large-scale Supabase project? DM me →
Configuration

Configuration

Supabase Cache Helpers does a decent job at keeping your data up-to-date. This allows you to deviate from the standard configuration and reduce the number of requests to your backend while keeping your app fresh.

function Page() { return ( <SWRConfig value={{ revalidateIfStale: false, revalidateOnFocus: false, }} > ... </SWRConfig> ) }