From 8812290f8a233457fed48b35e275b3ec14a61d11 Mon Sep 17 00:00:00 2001 From: byeongcheolryu Date: Wed, 7 Jan 2026 20:15:57 +0900 Subject: [PATCH] =?UTF-8?q?chore(WEB):=20=EB=B9=8C=EB=93=9C=20=EC=8B=9C=20?= =?UTF-8?q?=EC=84=9C=EB=B2=84=20=EC=9E=90=EB=8F=99=20=EC=9E=AC=EC=8B=9C?= =?UTF-8?q?=EC=9E=91=20=EC=8A=A4=ED=81=AC=EB=A6=BD=ED=8A=B8=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - build:restart 스크립트 추가 - 포트 3000 서버 종료 → 빌드 → 성공 시 서버 자동 시작 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 2d225644..2880e0c8 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "dev": "next dev", "build": "next build", + "build:restart": "lsof -ti:3000 | xargs kill 2>/dev/null; next build && next start &", "start": "next start", "lint": "eslint", "test:e2e": "playwright test",