Every environment variable you read from `process.env` is a string. Even when it shouldn't be. const dbPort = process.env.DB_PORT // This is a string const enableCache = process.env.ENABLE_CACHE // This is also a string When you set `ENABLE_CACHE=fa...
chintanshah35.hashnode.dev6 min read
No responses yet.