From de8ba00e55588bccc4f96c3efb1d51515339b41f Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Wed, 2 Apr 2025 16:17:52 +0900 Subject: [PATCH] chore: Update startscript to run development server on port 5000 --- startscript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startscript.js b/startscript.js index 37f52696..e276be78 100644 --- a/startscript.js +++ b/startscript.js @@ -1,2 +1,2 @@ var exec = require('child_process').exec -exec('yarn start', { windowsHide: true }) +exec('yarn dev -p 5000', { windowsHide: true })