1

I've a standalone React project. I'm using VisualStudio 2022 Preview 2 as the IDE. Every time I launches the react webapp by clicking on green play icon in VS, It launches an Incognito Chrome window.

Is there any way I can launch the application in normal Chrome window?

This is the launch.json file inside .vscode folder

{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "localhost (Chrome)",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}"
    },
    {
      "type": "edge",
      "request": "launch",
      "name": "localhost (Edge)",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}"
    }
  ]
}

enter image description here

4

1 回答 1

0

在我这边进行了测试,但 VS 成功启动了正常的 Chrome。要检查的几件事:

1)。检查您是否为/在 Google Chrome 中设置了一些配置,尝试重置它或更改相关设置。还要考虑清除缓存。

2)。检查您是否选择了普通 Chrome 进行调试。

在此处输入图像描述

3)。尝试重新启动VS。

4)。尝试重置 Visual Studio设置。

5)。检查这个问题是否出现在新创建的 React 项目中。

6)。检查您是否安装了一些可能会影响这一点的第三方扩展,并禁用它们中的任何一个尝试一下。

于 2021-08-31T01:14:40.623 回答