Advanced
dotenvx.config(noBitwarden: true)
Leave bw:// values unresolved and avoid calling the Bitwarden CLI.
By default, config() resolves bw:// values through the installed Bitwarden Password Manager CLI.
# .env
API_KEY="bw://My GitHub Account/password"
Set noBitwarden to leave the reference unresolved:
// index.js
require('@dotenvx/dotenvx').config({noBitwarden: true})
console.log(process.env.API_KEY)