-
I found this option somewhat confusing. Please correct me if I’m mistaken. The documentation states: Consider the scenario where the local storage key is
In summary, this option primarily acts as a safeguard for cases where key in local storage is not defined. However, this behavior can be easily handled in user space with no ambiguity without relying on this option. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In short, Next.js users should use |
Beta Was this translation helpful? Give feedback.
In short, Next.js users should use
false
, RN users would usetrue
. We default tofalse
because many people reported as bugs previously.false
is required if you use SSR. Iftrue
works for your case, feel free to use it.