Module not found: Error: Can't resolve 'fs' in node_modules\dotenv\lib'

Jorge Nava picture Jorge Nava · Jan 25, 2020 · Viewed 8.3k times · Source

I'm trying to use dotenv with an angle, but when it comes to requiring dotenv

 require('dotenv').config()  
 or
 const Dotenv = require('dotenv-webpack');

I get the following error:

ERROR in ./node_modules/dotenv/lib/main.js Module not found: Error: Can't resolve 'fs' in 'C:\Users\57322\Favorites\Proyecto\core4edu\node_modules\dotenv\lib'

package.json

"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",

Answer

Sidouxie picture Sidouxie · May 29, 2020

I think the problem is related to webpack, I had the same problem on a next js project and here’s how I did to fix the problem.

Create file conf.js in root folder

I created a next.conf.js file in my root folder where there is my .env file, I imported dotenv and I exported the module where there is all my environment and these variables as if below.

export module dot env

Finally in my index file and my components I don’t need to import dotenv, I just need to paste my process.env. API_URL.

you dont need to import dotenv in index

I hope this example will solve your problem.