1
ewpratten.com/.vscode/tasks.json
2022-12-01 11:18:58 -05:00

36 lines
905 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": []
},
{
"label": "Compile assets",
"type": "shell",
"command": "make",
"args": [
],
"problemMatcher": []
}
]
}