Hugo/.vscode/tasks.json

28 lines
710 B
JSON
Raw Permalink Normal View History

2021-10-15 13:31:30 -04:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Serve Drafts",
"type": "shell",
"command": "hugo server -D",
"group": {
"kind": "test",
"isDefault": true
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Build",
"type": "shell",
"command": "hugo",
2021-10-15 13:31:30 -04:00
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}