如何在 vscode 中同时 运行 两个 pwa-msedge 调试器?
How to run two pwa-msedge debuggers in vscode at the same time?
我的应用程序中有两个前端应用程序需要同时 运行 处于调试器模式。
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-msedge",
"request": "launch",
"name": "Org Admin - Edge",
"url": "http://localhost:3001",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/microsoft-edge-beta"
},
{
"name": "Super Admin - Edge",
"request": "launch",
"type": "pwa-msedge",
"url": "http://localhost:3002",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/microsoft-edge-beta"
},
{
"command": "npm run dev",
"name": "Start Full Application",
"request": "launch",
"type": "node-terminal"
}
]
}
这是我目前的配置,但我只能同时 运行 超级管理员 - 边缘或组织管理员 - 边缘。我想要的是 运行 当我单独启动它们时,同时所有这些。
基本上,需要从 VSCode 调试器同时 运行 两个“pwa-msedge”实例。
恐怕你想要的是不可能的。一个配置可以启动一个 Edge 实例,您一次只能使用一个配置。您唯一能做的就是依次启动 Org Admin - Edge 和 Super Admin - Edge。那么两者都是运行,可以debug了。
我的应用程序中有两个前端应用程序需要同时 运行 处于调试器模式。
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-msedge",
"request": "launch",
"name": "Org Admin - Edge",
"url": "http://localhost:3001",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/microsoft-edge-beta"
},
{
"name": "Super Admin - Edge",
"request": "launch",
"type": "pwa-msedge",
"url": "http://localhost:3002",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/microsoft-edge-beta"
},
{
"command": "npm run dev",
"name": "Start Full Application",
"request": "launch",
"type": "node-terminal"
}
]
}
这是我目前的配置,但我只能同时 运行 超级管理员 - 边缘或组织管理员 - 边缘。我想要的是 运行 当我单独启动它们时,同时所有这些。
基本上,需要从 VSCode 调试器同时 运行 两个“pwa-msedge”实例。
恐怕你想要的是不可能的。一个配置可以启动一个 Edge 实例,您一次只能使用一个配置。您唯一能做的就是依次启动 Org Admin - Edge 和 Super Admin - Edge。那么两者都是运行,可以debug了。