We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 038ab43 commit 7e6b92dCopy full SHA for 7e6b92d
.devcontainer/devcontainer.json
@@ -21,5 +21,5 @@
21
},
22
"forwardPorts": [1313],
23
"remoteUser": "root",
24
- "postCreateCommand": "echo 'Hugo server ready to run! Use the Run and Debug view to start the server.'"
+ "postCreateCommand": "which hugo && hugo version && echo 'Hugo server ready to run! Use the Run and Debug view to start the server.'"
25
}
.vscode/launch.json
@@ -3,10 +3,10 @@
3
"configurations": [
4
{
5
"name": "Hugo Server",
6
- "type": "node",
+ "type": "shell",
7
"request": "launch",
8
- "runtimeExecutable": "hugo",
9
- "runtimeArgs": [
+ "command": "hugo",
+ "args": [
10
"server",
11
"--appendPort=false",
12
"--baseURL=/",
0 commit comments