diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..749ad41 --- /dev/null +++ b/.vscode/launch.json @@ -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": [] + } + ] +}