is-monitor/is-monitor-frontend/.vscode/launch.json

24 lines
676 B
JSON
Raw Normal View History

2019-09-30 14:32:24 +02:00
// 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": [
2019-10-11 18:16:14 +02:00
{
2019-10-17 15:47:13 +02:00
"name": "Launch Chrome is-monitor-frontend on Angular CLI Server",
2019-10-11 18:16:14 +02:00
"type": "chrome",
"request": "launch",
2019-10-17 15:47:13 +02:00
"port": 9225,
2019-10-11 18:16:14 +02:00
"webRoot": "${workspaceFolder}",
2019-10-17 15:47:13 +02:00
"url": "http://localhost:4200/#"
2019-10-18 14:45:01 +02:00
},
{
"name": "Launch Chrome localhost",
"type": "chrome",
"request": "launch",
"port": 9227,
"webRoot": "${workspaceFolder}",
"url": "http://localhost:4200/"
2019-09-30 14:32:24 +02:00
}
]
}