webapp/.vscode/launch.json

15 lines
293 B
JSON
Raw Normal View History

2024-07-22 06:57:48 +00:00
{
"version": "0.2.0",
"configurations": [
{
2024-07-22 11:24:36 +00:00
"name": "Launch browser against localhost",
2024-07-22 06:57:48 +00:00
"type": "chrome",
"request": "launch",
2024-07-22 11:24:36 +00:00
"url": "https://localhost:3000",
2024-07-22 06:57:48 +00:00
"webRoot": "${workspaceFolder}/src",
"sourceMaps": true,
2024-07-22 11:24:36 +00:00
"trace": true
2024-07-22 06:57:48 +00:00
}
]
}