Switch to using tailwind.css build and subsequently switch to docker file

This commit is contained in:
Peter Stockings
2024-12-25 00:09:56 +11:00
parent 2abd140dd8
commit 786d422864
8 changed files with 2942 additions and 1 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "bloodpressure",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tailwindcss -o ./app/static/css/tailwind.css --minify",
"serve": "npx tailwindcss -o ./app/static/css/tailwind.css --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
}
}