From 0be7646158b26a4f57a23d2625f5064ab4cef256 Mon Sep 17 00:00:00 2001 From: andres alcocer Date: Tue, 8 Feb 2022 18:42:08 -0500 Subject: [PATCH] console.log dotenv 2 --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index f12009a..5a9be27 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -9,7 +9,7 @@ var path = require('path') module.exports = () => { // call dotenv and it will return an Object with a parsed key const env = dotenv.config().parsed - console.log('env------', dotenv.config().parsed) + console.log('env------', dotenv.config()) // reduce env variables to an oject const envKeys = Object.keys(env).reduce((prev, next) => {