From 1834cb5dbdedc309ddfb75c61c3dd92cff02f611 Mon Sep 17 00:00:00 2001 From: chyipin Date: Fri, 19 May 2017 09:18:00 -0700 Subject: [PATCH] Show customized build path for serve instruction (#2229) * Show customized build path for serve instruction * Remove cyan --- packages/react-dev-utils/printHostingInstructions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-dev-utils/printHostingInstructions.js b/packages/react-dev-utils/printHostingInstructions.js index 4b31cbc4499..7b9284d4e59 100644 --- a/packages/react-dev-utils/printHostingInstructions.js +++ b/packages/react-dev-utils/printHostingInstructions.js @@ -106,7 +106,7 @@ function printHostingInstructions( } else { console.log(` ${chalk.cyan('npm')} install -g serve`); } - console.log(` ${chalk.cyan('serve')} -s build`); + console.log(` ${chalk.cyan('serve')} -s ${buildFolder}`); console.log(); } }