2024-11-19

This commit is contained in:
2024-11-19 14:10:40 -06:00
parent b39471bed0
commit 47c0c69fd4
21 changed files with 7501 additions and 141 deletions

33
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,33 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Eleventy --serve",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "npx",
"args": ["@11ty/eleventy","--output","dist", "--serve"],
},
{
"type": "node",
"request": "launch",
"name": "Debug Eleventy --serve",
"skipFiles": [
"<node_internals>/**"
],
"env": {
"DEBUG":"Eleventy*"
},
"runtimeExecutable": "npx",
"args": ["@11ty/eleventy", "--output", "dist", "--serve"],
}
]
}

6
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"files.exclude": {
// "dist/": true
"**/.obsidian/": true
}
}

20
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Simple Browser",
"command": "${input:openSimpleBrowser}",
"problemMatcher": []
}
],
"inputs": [
{
"id": "openSimpleBrowser",
"type": "command",
"command": "simpleBrowser.show",
"args": [
"http://localhost:8081"
]
}
]
}