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
To avoid bundling in this large dev library disable with a dynamic import:
yarn add react-error-overlay
if (process.env.NODE_ENV === 'development') { import('react-error-overlay').then(m => { m.stopReportingRuntimeErrors(); }); }