25 lines
841 B
JSON
25 lines
841 B
JSON
|
{
|
||
|
// 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": []
|
||
|
}
|
||
|
]
|
||
|
}
|