to null or something doesn't help either - it actually has to be set to something 'compatible', eg what I've ended up doing:
```
const supabase = globalThis.supabase.createClient(supabase_url, supabase_key, {
persistSession: false,
localStorage: {
setItem: () => {},
getItem: () => {},
removeItem: () => {},
clear: () => {},
},
});
```
Doing the same in an
to null or something doesn't help either - it actually has to be set to something 'compatible', eg what I've ended up doing:
```
const supabase = globalThis.supabase.createClient(supabase_url, supabase_key, {
persistSession: false,
localStorage: {
setItem: () => {},
getItem: () => {},
removeItem: () => {},
clear: () => {},
},
});
```
Doing the same in an