webapp/.vscode/launch.json
2024-07-22 09:57:48 +03:00

17 lines
382 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Brave against localhost",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/src",
"sourceMaps": true,
"trace": true,
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser"
}
]
}