Przeglądaj źródła

:gear: Adds launch.json

Jeff Triplett 1 rok temu
rodzic
commit
5d6da7e16c
1 zmienionych plików z 17 dodań i 0 usunięć
  1. 17 0
      .vscode/launch.json

+ 17 - 0
.vscode/launch.json

@@ -0,0 +1,17 @@
+{
+  "version": "0.2.0",
+  "configurations": [
+    {
+      "name": "Serve Jekyll Site",
+      "type": "shell",
+      "request": "launch",
+      "command": "bundle exec jekyll serve --livereload",
+      "cwd": "${workspaceFolder}",
+      "presentation": {
+        "reveal": "always",
+        "panel": "new"
+      },
+      "problemMatcher": []
+    }
+  ]
+}