React injecting iframe with max z-index on reload after changes (development)
This is actually a known bug in react-scripts, which is used in create-react-app. They’re apparently working on a fix for react-scripts v5.0.1, but adding the following lines to your package.json will fix it: “resolutions”: { “react-error-overlay”: “6.0.9” } So your package.json should look something like this: { “name”: “whatever”, “version”: “0.1.0”, “private”: true, “dependencies”: { … Read more