This commit is contained in:
2025-07-16 08:48:23 +02:00
parent 97c338584f
commit 3beb233820
4 changed files with 388 additions and 57 deletions
+7 -1
View File
@@ -8,6 +8,12 @@
},
"scripts": {
"watch": "npx @tailwindcss/cli -i ./src/css/input.css -o ./assets/css/styles.css --content './site/**/*.php' --watch",
"build": "npx @tailwindcss/cli -i ./src/css/input.css -o ./assets/css/styles.css --content './site/**/*.php'"
"build": "npx @tailwindcss/cli -i ./src/css/input.css -o ./assets/css/styles.css --content './site/**/*.php'",
"serve": "php -S localhost:8000 vendor/getkirby/cms/router.php",
"sync": "npx browser-sync start --proxy \"localhost:8000\" --files \"site/**/*.php,assets/**/*.css,assets/**/*.js,content/**/*.txt\" --no-open",
"dev": "concurrently \"npm run serve\" \"npm run sync\""
},
"devDependencies": {
"concurrently": "^9.2.0"
}
}