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>
)
}