We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afa910b commit d45ddbfCopy full SHA for d45ddbf
scripts/build.js
@@ -25,5 +25,12 @@ webpack(config).run(function(err, stats) {
25
process.exit(1);
26
}
27
28
- console.log('Build successfully generated in the build/ folder');
+ console.log('Successfully generated a bundle in the build folder!');
29
+ console.log();
30
+ console.log('You can now serve it with any static server:');
31
+ console.log(' cd build');
32
+ console.log(' python -m SimpleHTTPServer 9000');
33
+ console.log(' open http://localhost:9000');
34
35
+ console.log('It is optimized and ready to be deployed for production.');
36
});
0 commit comments