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
When parsing a .env file containing FOO=A\\B, dotenv loads it as A\\B.
But it should remove one slash instead, and load value A\B (same as what the shell does when reading the same value).