Commit 3a1ed7a9 authored by Dan Abramov's avatar Dan Abramov Committed by GitHub
Browse files

Recommend st instead of http-server

It has gzip built-in so the size numbers are closer to real world. Thanks @ForbesLindesay for the tip!
Related to #228
parent e839dff8
Showing with 3 additions and 3 deletions
+3 -3
...@@ -44,9 +44,9 @@ webpack(config).run(function(err, stats) { ...@@ -44,9 +44,9 @@ webpack(config).run(function(err, stats) {
console.log('For example:'); console.log('For example:');
console.log(); console.log();
console.log(' cd build'); console.log(' cd build');
console.log(' npm install -g http-server'); console.log(' npm install -g st');
console.log(' hs'); console.log(' st -p 8000 -i index.html');
console.log(' ' + openCommand + ' http://localhost:8080'); console.log(' ' + openCommand + ' http://localhost:8000');
console.log(); console.log();
} }
console.log('The bundle is optimized and ready to be deployed to production.'); console.log('The bundle is optimized and ready to be deployed to production.');
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment