From 180422d87b4f695e8c2d7f75ada1dab77a0bf2a7 Mon Sep 17 00:00:00 2001 From: Hieu D <48117687+dqhntt@users.noreply.github.com> Date: Wed, 24 Apr 2024 05:45:55 +0000 Subject: [PATCH] Add build task for VS Code That automatically builds site and serve it locally --- .vscode/tasks.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..c075927 --- /dev/null +++ b/.vscode/tasks.json @@ -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 + } + } + ] +} \ No newline at end of file