awesome-django/.vscode/launch.json

18 lines
353 B
JSON
Raw Normal View History

2024-01-23 01:18:14 +00:00
{
"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": []
}
]
}