From d6550a5d39f66005adfa5ecfac191efeb8114014 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Tue, 11 Feb 2020 10:18:21 -0800 Subject: [PATCH] Update docs/deployment.md Co-Authored-By: Luis Alvarez D. --- docs/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment.md b/docs/deployment.md index 8d02024a5003c..e220da1c6ac3c 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -68,7 +68,7 @@ Make sure your `package.json` has the `"build"` and `"start"` scripts: } ``` -`build` builds the production application in the `.next` folder. After building, `start` starts a Node.js server that supports [hybrid pages](/docs/basic-features/pages.md), serving both statically generated and server-side rendered pages. +`next build` builds the production application in the `.next` folder. After building, `next start` starts a Node.js server that supports [hybrid pages](/docs/basic-features/pages.md), serving both statically generated and server-side rendered pages. >