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

Add next build and next start to the first How to use sample (#894)

This commit is contained in:
Jarmo Isotalo 2017-01-26 19:00:55 +02:00 committed by Arunoda Susiripala
parent 0b3db91731
commit 0b131cad2a

View file

@ -21,7 +21,9 @@ and add a script to your package.json like this:
```json ```json
{ {
"scripts": { "scripts": {
"dev": "next" "dev": "next",
"build": "next build",
"start": "next start"
} }
} }
``` ```