chirpy-starter/.vscode/tasks.json
Hieu D 180422d87b
Add build task for VS Code
That automatically builds site and serve it locally
2024-04-24 05:45:55 +00:00

18 lines
495 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Serve Website",
"type": "shell",
"command": "bundle exec jekyll serve --watch --incremental",
"isBackground": true,
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}