Closed
Description
My team runs this create-react-app as a single process inside docker, in order to host and build our web site (dev version).
It runs beside many other containers, such as the backend api server and our database.
When running docker (such as using docker-compose up
), we get the output of all our container's stdout, which is normally great as we can see any activity as we test and use the app in development.
However, create-react-app resets/clears the console several times, effectively deleting from my screen every other container's output up until that point.
Is there a way to not reset/clear the screen or a workaround?