awesome-django/.vscode/launch.json
Jeff Triplett 5d6da7e16c
⚙️ Adds launch.json
2024-01-22 19:18:14 -06:00

18 lines
353 B
JSON

{
"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": []
}
]
}