Add launch file

This commit is contained in:
Danny Spina 2023-06-22 15:10:43 +02:00
parent 76bf19e6a8
commit 923f999ba1

13
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Chromium",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8888",
"webRoot": "${workspaceRoot}",
"runtimeExecutable": "/Applications/Chromium.app/Contents/MacOS/chromium"
}
]
}