⚙️ Adds launch.json

This commit is contained in:
Jeff Triplett 2024-01-22 19:18:14 -06:00
parent 3446103a77
commit 5d6da7e16c
No known key found for this signature in database

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

@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Serve Jekyll Site",
"type": "shell",
"request": "launch",
"command": "bundle exec jekyll serve --livereload",
"cwd": "${workspaceFolder}",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
}
]
}