diff --git a/scripts/start.js b/scripts/start.js index b5fa51d14673fdc0a115b9433b3440974d0454e5..dd09ab51bdaf4350af74fde3ec506e0414c95275 100644 --- a/scripts/start.js +++ b/scripts/start.js @@ -84,8 +84,14 @@ function setupCompiler(port) { if (!hasErrors && !hasWarnings) { console.log(chalk.green('Compiled successfully!')); console.log(); - console.log('The app is running at http://localhost:' + port + '/'); + console.log('The app is running at:'); console.log(); + console.log(' ' + chalk.cyan('http://localhost:' + port + '/')); + console.log(); + console.log('Note that the development build is not optimized.'); + console.log('To create a production build, use ' + chalk.cyan('npm run build') + '.'); + console.log(); + return; }