From 06fd9bb43c5c8b07e5879f9180c2e03b96dadd9b Mon Sep 17 00:00:00 2001 From: Scott Motte Date: Mon, 12 Feb 2024 12:53:35 -0800 Subject: [PATCH] update README --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 50e2a21a..e54075ee 100644 --- a/README.md +++ b/README.md @@ -366,8 +366,6 @@ By default, `config` will look for a file called .env in the current working dir Pass in multiple files as an array, and they will be parsed in order and combined with `process.env` (or `option.processEnv`, if set). The first value set for a variable will win, unless the `options.override` flag is set, in which case the last value set will win. If a value already exists in `process.env` and the `options.override` flag is NOT set, no changes will be made to that value. ```js - -```js require('dotenv').config({ path: ['.env.local', '.env'] }) ```