Skip to content

Commit 68c8b6b

Browse files
committed
add vscode task for running hugo
1 parent 2887311 commit 68c8b6b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.vscode/tasks.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "hugo serve",
8+
"type": "shell",
9+
"command": "hugo serve",
10+
"group": "build",
11+
"isBackground": true,
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)