1
ewpratten.com/.vscode/tasks.json
2023-01-23 13:48:36 -05:00

28 lines
715 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Launch development webserver",
"type": "shell",
"command": "zola",
"args": [
"serve",
"--drafts",
"--open"
],
"problemMatcher": []
},
{
"label": "Launch development webserver (without drafts)",
"type": "shell",
"command": "zola",
"args": [
"serve",
"--open"
],
"problemMatcher": []
}
]
}