Clarify getting started example

The first example in README is mentioning `client.js`. When it serve via `budo`,
I think the client-side script is the `client.js` not `bundle.js` in this case.
This commit is contained in:
Ryuichi Okumura
2016-07-21 20:17:05 +09:00
parent f1cd8b8277
commit 9d59c2143f
+1 -1
View File
@@ -156,7 +156,7 @@ do:
```bash ```bash
$ mkdir -p 'dist/' $ mkdir -p 'dist/'
$ curl 'localhost:8080' > 'dist/index.html' $ curl 'localhost:8080' > 'dist/index.html'
$ curl 'localhost:8080/bundle.js' > 'dist/bundle.js' $ curl 'localhost:8080/client.js' > 'dist/client.js'
``` ```
All using a couple of shell commands and `.js` files, no grandiose boilerplate All using a couple of shell commands and `.js` files, no grandiose boilerplate
needed. needed.