Public Access
1
0

fix: implement tailwindcss

This commit is contained in:
2025-09-01 17:57:53 -04:00
parent b204e5a351
commit 87c304f0df
8 changed files with 2839 additions and 71 deletions

View File

@@ -3,9 +3,13 @@
"version": "1.0.0",
"description": "An Eleventy project with Docker and VS Code debugging.",
"scripts": {
"start": "eleventy --serve",
"debug": "node --inspect=0.0.0.0:9229 ./node_modules/.bin/eleventy --serve --watch",
"build": "eleventy"
"build:css": "tailwindcss -i ./src/css/input.css -o ./src/css/style.css --minify",
"watch:css": "tailwindcss -i ./src/css/input.css -o ./src/css/style.css --watch",
"start": "npm-run-all -p serve watch:css",
"serve": "eleventy --serve",
"debug": "npm-run-all -p debug:eleventy watch:css",
"debug:eleventy": "node --inspect=0.0.0.0:9229 ./node_modules/.bin/eleventy --serve --watch",
"build": "npm run build:css && eleventy"
},
"keywords": [],
"author": "",
@@ -21,7 +25,10 @@
"luxon": "^3.7.1"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"http-proxy-middleware": "^3.0.0",
"nodemon": "^3.1.0"
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3"
}
}