VSC 控制台出错,但在 Windows 控制台中有效

Error in VSC console, but works in Windows console

我有一个从 Github 中提取的 Frontity 项目 (React)。

当我在 windows 终端(powershell)中使用命令 npx frontity dev 启动时,它会启动服务器,一切都按预期进行。但是,当我在 VSC 终端(powershell 和终端)中尝试相同的过程时,出现错误:

Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.

这应该是 VSC 本身的问题,所以我重新安装了 VSC 并将终端更改为外部终端,但仍然没有任何变化。

有什么建议吗?

已解决!当我更新 gitignore-file 以包含构建文件夹时,一切也开始在 VSC 控制台中运行。奇怪的错误。