From e9b106d379f8cf9cfbbbb62b233a613be9f52219 Mon Sep 17 00:00:00 2001 From: Mathias Date: Sun, 14 Aug 2022 01:30:52 +0200 Subject: [PATCH] Updated the client start script to use the "dev"-script instead of the "start" script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c9851b31..31d2932c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "myspeed", "version": "1.0.3", "scripts": { - "client": "cd client && npm start", + "client": "cd client && npm run dev", "server": "nodemon server", "build": "cd client && npm run build", "dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""