1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

README: fix instruction

This commit is contained in:
nkzawa 2016-10-27 08:07:33 +09:00
parent 9a78dd8d1c
commit dbc125f7e3

View file

@ -15,7 +15,7 @@ and add a script to your package.json like this:
```json ```json
{ {
"scripts": { "scripts": {
"start": "next" "dev": "next"
} }
} }
``` ```
@ -31,7 +31,7 @@ export default () => (
) )
``` ```
and then just run `npm start` and go to `http://localhost:3000` and then just run `npm run dev` and go to `http://localhost:3000`
So far, we get: So far, we get: