Skip to content

Commit

Permalink
add vscode task for running hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
willnorris committed Oct 22, 2021
1 parent 2887311 commit 68c8b6b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "hugo serve",
"type": "shell",
"command": "hugo serve",
"group": "build",
"isBackground": true,
}
]
}

0 comments on commit 68c8b6b

Please sign in to comment.