Add debug config

This commit is contained in:
Piotr Rogowski 2022-10-18 20:09:04 +02:00
parent a5d15e6dfe
commit f195ad6d3a
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
1 changed files with 15 additions and 0 deletions

15
.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": "chrome",
"request": "launch",
"name": "Chrome",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/src"
}
]
}