vscode-hugo/.vscode/tasks.json

25 lines
841 B
JSON
Raw Permalink Normal View History

2024-08-17 00:35:18 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Hugo: Server",
"detail": "Run development server with hot reload",
"type": "shell",
"command": "hugo server --bind '0.0.0.0' --baseURL 'http://localhost:1313/' --gc --forceSyncStatic --cleanDestinationDir --buildDrafts --buildFuture --buildExpired",
"presentation": {
"echo": false,
"reveal": "silent"
},
"problemMatcher": []
},
{
"label": "Hugo: Build",
"detail": "Build this site for deployment",
"type": "shell",
"command": "hugo",
"problemMatcher": []
}
]
}