Skip to content

Commit d7f739c

Browse files
Added vscode debug
1 parent 1f6319a commit d7f739c

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ public/
33
resources/
44
.hugo_build.lock
55

6-
# Editor
7-
.vscode/
6+
.DS_Store

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Launch Edge against localhost",
11+
"url": "http://localhost:1313",
12+
"webRoot": "${workspaceFolder}",
13+
"preLaunchTask": "go-hugo",
14+
}
15+
]
16+
}

.vscode/tasks.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [{
4+
"label": "go-hugo",
5+
"command": "hugo",
6+
"args": ["server"],
7+
"type": "shell"
8+
}]
9+
}

content/.DS_Store

-6 KB
Binary file not shown.

0 commit comments

Comments
 (0)