Create launch.json

This commit is contained in:
CarleyDiaz-Bitwarden 2022-06-16 17:05:25 -04:00
parent ff137e0072
commit 8f06a8cf35
1 changed files with 15 additions and 0 deletions

15
apps/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "https://localhost:8080/#",
"webRoot": "${workspaceFolder}"
}
]
}