1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-14 15:33:55 +00:00

Create launch.json

This commit is contained in:
CarleyDiaz-Bitwarden
2022-06-16 17:05:25 -04:00
parent ff137e0072
commit 8f06a8cf35

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}"
}
]
}