Ajoute une tâche "hugo serve" pour vscodium
All checks were successful
Build and push chill website image / build (push) Successful in 1m10s

This commit is contained in:
Julien Fastré 2025-07-17 13:18:57 +02:00
parent 1b7b81db46
commit 407b9946f8
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

17
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Hugo Serve",
"type": "shell",
"command": "hugo",
"args": ["serve"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Sert le site Hugo localement"
}
]
}