From 3d33977471be4a1988f534ea288ccf51f077aca1 Mon Sep 17 00:00:00 2001 From: SAAC Daemon Date: Wed, 18 Feb 2026 18:27:53 +0100 Subject: [PATCH] Fix hot-reload: nodemon only restarts backend (1-2s), client builds separately --- nodemon.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodemon.json b/nodemon.json index ceac23d..5056a43 100644 --- a/nodemon.json +++ b/nodemon.json @@ -1,5 +1,5 @@ { - "watch": ["server.js", "client/src"], - "ext": "js,ts,tsx,jsx,css,json", - "exec": "npm run build && node server.js" + "watch": ["server.js"], + "ext": "js,json", + "exec": "node server.js" }