From bb7d2c3b0b1b4a92d692c9759c6528c2e34c6fc0 Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Sun, 7 Jan 2024 00:08:57 +0100 Subject: [PATCH] Fixed typo in first example of readme which causes an error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index deeb091a..685672a1 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ SECRET_KEY="YOURSECRETKEYGOESHERE" As early as possible in your application, import and configure dotenv: ```javascript -import dotnev from "dotenv-esm"; +import dotenv from "dotenv-esm"; dotenv.config() console.log(process.env) // remove this after you've confirmed it is working ```