You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default any non-empty string env var in condition like this if (process.env.VAR) { will be parsed into boolean: true. So we need to check against another string if (process.env.VAR === 'true') {.
The text was updated successfully, but these errors were encountered:
By default any non-empty string env var in condition like this
if (process.env.VAR) {
will be parsed intoboolean: true
. So we need to check against another stringif (process.env.VAR === 'true') {
.The text was updated successfully, but these errors were encountered: