webapp/.vscode/launch.json
2024-07-22 14:24:36 +03:00

15 lines
293 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch browser against localhost",
"type": "chrome",
"request": "launch",
"url": "https://localhost:3000",
"webRoot": "${workspaceFolder}/src",
"sourceMaps": true,
"trace": true
}
]
}