Open erik-ekberg-sg opened 3 years ago
We should not output console.log statements in production; though, we should keep them for development purposes. I would toggle them on and off using process.env.NODE_ENV === 'production' checks.
console.log
process.env.NODE_ENV === 'production'
We should not output
console.log
statements in production; though, we should keep them for development purposes. I would toggle them on and off usingprocess.env.NODE_ENV === 'production'
checks.