removed console.log statements

This commit is contained in:
andres alcocer
2022-11-24 08:25:17 -05:00
parent dd4b928dd4
commit cc110b6aae

View File

@@ -10,7 +10,6 @@ module.exports = () => {
// call dotenv and it will return an Object with a parsed key // call dotenv and it will return an Object with a parsed key
const env = dotenv.config().parsed const env = dotenv.config().parsed
// reduce env variables to an oject // reduce env variables to an oject
console.log('ENV IS', dotenv.config())
const envKeys = Object.keys(env).reduce((prev, next) => { const envKeys = Object.keys(env).reduce((prev, next) => {
prev[`process.env.${next}`] = JSON.stringify(env[next]) prev[`process.env.${next}`] = JSON.stringify(env[next])
return prev return prev