Open
Description
Hello
I created a project using npx create-react-app my-app
. If i use npm start
, compilation is successful, but the page is blank.
I have not made any changes to the project.
The console contains an error:
react-refresh-runtime.development.js:465 Uncaught TypeError: Cannot read property 'forEach' of undefined at Object.injectIntoGlobalHook (react-refresh-runtime.development.js:465) at Object../node_modules/@pmmmwh/react-refresh-webpack-plugin/client/ReactRefreshEntry.js (ReactRefreshEntry.js:8) at __webpack_require__ (bootstrap:856) at fn (bootstrap:150) at Object.1 (reportWebVitals.js:14) at __webpack_require__ (bootstrap:856) at checkDeferredModules (bootstrap:45) at Array.webpackJsonpCallback [as push] (bootstrap:32) at main.chunk.js:1
Activity
yves-zhou commentedon Dec 15, 2020
Today, I found this problem.
avihaymenahem commentedon Dec 15, 2020
Same here, running from npx here causes the same issue (no modifications maded)
EDIT:
A workaround for now so you can keep on working:
Disable the React DEV TOOLS extension on Chrome.
The problem comes from the global Hook which initiated wrong (Missing renderers prop on the object, which needs to be initiated with new Map())
KovbenyaAlexander commentedon Dec 15, 2020
@avihaymenahem lol, I installed this extension and now the project is working correctly. but only in a browser with the extension
blockmood commentedon Dec 21, 2020
@KovbenyaAlexander Close the Browser react plugin。
albiummid commentedon Mar 3, 2021
that also worked for me. XD
arron-chen commentedon Apr 17, 2021
so did i,how to do?
arron-chen commentedon Apr 17, 2021
disabled the browser devtools will be fine, but i need this devtools to debug?
hechengxixi commentedon Apr 21, 2021
@arron-chen the same case with me. do you find better way to debug?
KevinAdu commentedon Feb 23, 2022
Did this issue ever get solved?
callisto1337 commentedon Mar 21, 2022
the same case
voidoperator commentedon Jun 18, 2023
i've been getting a similar error when clearing localStorage manually (which is set by a useEffect, the data stored is an object that i'm state managing with react's context API).
jarrodmjack commentedon Jul 21, 2023
@voidoperator I am getting this exact same issue with localstorage but cannot find a fix
Shaker-Hamdi commentedon Aug 3, 2023
I'm not even using "Create React App" and I'm getting the same issue with "Vite" and "Next.js".
I think it's a "React Dev Tool" issue.
idilTugba commentedon Sep 16, 2023
everything working correctly now
thany commentedon Jun 7, 2024
I'm getting this error without the react devtools as well. All I have to do is access my website running om localhost, through BrowserStack. Not sure what is happening, but it should be easy to reproduce with any CRA.