1
0

Added picture
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
Jens True 2020-08-23 19:50:08 +02:00
parent c0bbc2590a
commit 3e7b9ea0df
2 changed files with 37 additions and 0 deletions

37
.vscode/tasks.json vendored Normal file

@ -0,0 +1,37 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "server",
"type": "process",
"command": "hugo",
"args": [
"server"
],
"isBackground": true,
"problemMatcher": {
"severity": "error",
"fileLocation": "absolute",
"owner": "hugo",
"pattern": {
"regexp": "template: (.*):(\\d+): (.*)",
"file": 1,
"location": 2,
"message": 3,
"loop": true
},
"background": {
"activeOnStart": true,
"beginsPattern": "Change detected, rebuilding site",
"endsPattern": "Total in \\d+ ms"
}
},
"group": {
"kind": "test",
"isDefault": true
}
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB