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",
"tasks": [
{
"type": "hugo",
"task": "server draft",
"group": "build",
"problemMatcher": [],
"label": "hugo: Serve draft site"
"label": "Test Site Locally",
"command": "make",
"args": [
"serve"
],
"problemMatcher": []
}
]
}