We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b8313 commit 01eeb61Copy full SHA for 01eeb61
scripts/start.js
@@ -84,8 +84,14 @@ function setupCompiler(port) {
84
if (!hasErrors && !hasWarnings) {
85
console.log(chalk.green('Compiled successfully!'));
86
console.log();
87
- console.log('The app is running at http://localhost:' + port + '/');
+ console.log('The app is running at:');
88
89
+ console.log(' ' + chalk.cyan('http://localhost:' + port + '/'));
90
+ console.log();
91
+ console.log('Note that the development build is not optimized.');
92
+ console.log('To create a production build, use ' + chalk.cyan('npm run build') + '.');
93
94
+
95
return;
96
}
97
0 commit comments