Switch the vscode task to use make

This commit is contained in:
2024-03-10 10:17:41 +00:00
parent f8a86494e1
commit ee1a3c6481

11
.vscode/tasks.json vendored
View File

@@ -2,11 +2,12 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"type": "hugo", "label": "Test Site Locally",
"task": "server draft", "command": "make",
"group": "build", "args": [
"problemMatcher": [], "serve"
"label": "hugo: Serve draft site" ],
"problemMatcher": []
} }
] ]
} }