chore: added visual studio code debugging launch options

This commit is contained in:
Dominik Biedebach 2022-04-09 06:52:37 +02:00
parent ab4a0e2507
commit 4a7f79c095

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

@ -0,0 +1,11 @@
{
"configurations": [
{
"name": "Launch Tiptap demos in Google Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}