added launch.json

This commit is contained in:
David Headrick 2025-02-19 18:06:09 -06:00
parent 488d7cbf90
commit cf9c98c18c

View File

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "edge",
"request": "launch",
"name": "localhost (Edge)",
"url": "https://localhost:52871",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "localhost (Chrome)",
"url": "https://localhost:52871",
"webRoot": "${workspaceFolder}"
}
]
}