react process is not defined

问题

在运行时,浏览器控制台报错:process is not defined,并且会在页面创建个全屏iframe,阻止页面交互,头痛…

解决

固化react-error-overlay版本,下载包

npm i --save-exact [email protected]
npm i --save-dev [email protected]

package.json添加以下代码

  "resolutions": {
    
    
    "react-error-overlay": "6.0.9"
  },
  "flat": true

重新运行项目即可

猜你喜欢

转载自blog.csdn.net/weixin_43840202/article/details/124006867