We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b84f011 commit 6f88dc9Copy full SHA for 6f88dc9
.vscode/launch.json
@@ -0,0 +1,13 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Debug Jekyll",
6
+ "type": "pwa-chrome",
7
+ "request": "launch",
8
+ "url": "http://127.0.0.1:4000",
9
+ "webRoot": "${workspaceFolder}",
10
+ "preLaunchTask": "Run Jekyll"
11
+ }
12
+ ]
13
+}
.vscode/tasks.json
@@ -0,0 +1,12 @@
+ "version": "2.0.0",
+ "tasks": [
+ "label": "Run Jekyll",
+ "type": "shell",
+ "command": "mise exec -- bundle exec jekyll serve",
+ "isBackground": true,
+ "problemMatcher": []
0 commit comments