1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00
openuds-gui/.vscode/launch.json
Adolfo Gómez García c3e7fc56c5
Updated to yarn 4.x
2024-07-10 04:50:36 +02:00

22 lines
754 B
JSON

{
// 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": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://172.27.0.1:8000", // For auth first, later go to :9000
"webRoot": "${workspaceFolder}"
},
{
"type": "firefox",
"request": "launch",
"name": "Launch Firefox",
"url": "http://172.27.0.1:8000", // For auth first, later go to :9000
"webRoot": "${workspaceFolder}"
}
]
}