Public Access
1
0

update Docker and VS Code configurations for improved debugging

This commit is contained in:
2025-08-11 10:50:12 -04:00
parent 6c26b77fb5
commit 103080ba1b
7 changed files with 61 additions and 52 deletions

View File

@@ -1,18 +1,15 @@
{
"name": "eleventy",
"name": "eleventy-docker-debug",
"version": "1.0.0",
"description": "A basic Eleventy project.",
"description": "An Eleventy project with Docker and VS Code debugging.",
"scripts": {
"start": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy"
"start": "eleventy --serve --watch",
"debug": "node --inspect=0.0.0.0:9229 ./node_modules/.bin/eleventy --serve --watch"
},
"keywords": [
"eleventy",
"static-site-generator"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"dependencies": {
"@11ty/eleventy": "^2.0.1"
}
}