feat: fix tailwindcss in dev.sh and update index.html

This commit is contained in:
2025-11-11 21:36:54 +01:00
parent fd5b5e05e6
commit d2570339a3
3 changed files with 48 additions and 22 deletions

21
dev.sh
View File

@@ -1,24 +1,9 @@
#!/bin/bash
trap ctrl_c INT
function ctrl_c() {
stop
exit 0
}
function stop() {
kill %3
kill %2
kill %1
wait
}
npm run watch &
./gradlew classes --continuous &
./gradlew bootRun &
read -rp "Press Enter to stop"
npm run watch
stop
kill %2
kill %1