Home > Back-end >  How to hide "Download the React DevTools for a better development experience:"
How to hide "Download the React DevTools for a better development experience:"

Time:11-12

every time I launch or reload my react app I received the same console log message of "**Download the React DevTools for a better development experience: https://reactjs.org/link/react-devtools**".

How do you go by disabling this message so that when you deploy your site, it does not be seen?

Image of console log

I have found other post about this, but no solution.

CodePudding user response:

The console log will not be printed once you make a product build of your React application. It is only seen because you are running it in development mode.

  • Related