From cc110b6aae5d9121343acc7527867b7b45834dde Mon Sep 17 00:00:00 2001 From: andres alcocer Date: Thu, 24 Nov 2022 08:25:17 -0500 Subject: [PATCH] removed console.log statements --- webpack.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index fe70de2..a441a7c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -10,7 +10,6 @@ module.exports = () => { // call dotenv and it will return an Object with a parsed key const env = dotenv.config().parsed // reduce env variables to an oject - console.log('ENV IS', dotenv.config()) const envKeys = Object.keys(env).reduce((prev, next) => { prev[`process.env.${next}`] = JSON.stringify(env[next]) return prev