Add build task for VS Code

That automatically builds site and serve it locally
This commit is contained in:
Hieu D 2024-04-24 05:45:55 +00:00 committed by GitHub
parent 72ace9ef5b
commit 180422d87b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

18
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
// 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
}
}
]
}