Is there a way to disable the error overlay when running a create-react-app in development mode?
This is the overlay I\'m talking about:
I\'m askin
An alternate solution is to add the following CSS style:
iframe { display: none; }
This prevents the error from showing.