fix: update nodemon.json to watch client/src and run full build

This commit is contained in:
2026-02-21 18:35:24 +00:00
parent 6db9eadb6f
commit ede906ed3a

View File

@@ -1,5 +1,5 @@
{ {
"watch": ["server.js"], "watch": ["server.js", "client/src"],
"ext": "js,json", "ext": "js,ts,tsx,jsx,css,json",
"exec": "node server.js" "exec": "npm run build && node server.js"
} }