diff --git a/start.sh b/start.sh index 71a4add..a366343 100644 --- a/start.sh +++ b/start.sh @@ -1,6 +1,8 @@ +# 客户端启动 +nohup npm run serve >> prod.log 2>&1 & # 服务端启动 -nohup npm run prod >> server.log 2>&1 & echo '服务端后台启动' -# 客户端启动 -npm run serve +npm run prod + +