Skip to content

Commit 3707701

Browse files
cullylarsonTimer
andcommitted
Fix mistakes in the Deployment doc (#9925)
* Fix a few small spelling and grammar mistakes in the Deployment doc * Update deployment.md Co-authored-by: Joe Haddad <timer150@gmail.com>
1 parent 9261b82 commit 3707701

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Compile and deploy your Next.js app to production with ZEIT Now and
44

55
# Deployment
66

7-
To go to production Next.js has a `next build` command. When ran it will compile your project and automatically apply numerous optimizations.
7+
To go to production Next.js has a `next build` command. When run, it will compile your project and automatically apply numerous optimizations.
88

99
## Prepare your package.json
1010

@@ -46,9 +46,9 @@ The [hybrid pages](/docs/basic-features/pages.md) approach is fully supported ou
4646

4747
In case of [Static Generation](/docs/basic-features/pages.md#static-generation) the page will automatically be served from the ZEIT Now Smart CDN.
4848

49-
When the page is using [Server-Side Rendering](/docs/basic-features/pages.md#server-side-rendering) it will become an isolated serverless function automatically. This allows the page rendering to scale automatically and be independent, errors on one page won't affect another.
49+
When the page is using [Server-Side Rendering](/docs/basic-features/pages.md#server-side-rendering) it will become an isolated serverless function automatically. This allows the page rendering to scale automatically and be independenterrors on one page won't affect another.
5050

51-
API routes will also become separate serverless functions that execute and scale separately from eachother.
51+
API routes will also become separate serverless functions that execute and scale separately from each other.
5252

5353
### CDN + HTTPS by default
5454

@@ -60,7 +60,7 @@ HTTPS is enabled by default and doesn't require extra configuration.
6060

6161
#### From a git repository
6262

63-
You can link your project in [GitHub](https://zeit.co/new), [GitLab](https://zeit.co/new), or [Bitbucket](https://zeit.co/new) through the [web interface](https://zeit.co/new). This will automatically set up deployment previews for pull-requests and commits.
63+
You can link your project in [GitHub](https://zeit.co/new), [GitLab](https://zeit.co/new), or [Bitbucket](https://zeit.co/new) through the [web interface](https://zeit.co/new). This will automatically set up deployment previews for pull requests and commits.
6464

6565
#### Through the ZEIT Now CLI
6666

@@ -93,7 +93,7 @@ Generally you'll have to follow these steps to deploy to production:
9393
- Potentially copy the `.next`, `node_modules`, and `package.json` to your server.
9494
- Run `npm run start` (runs `next start`) on the server
9595

96-
In case you're doing a full static export using `next export` the steps are slightly different and doesn't involve using `next start`:
96+
In case you're doing a full static export using `next export` the steps are slightly different and don't involve using `next start`:
9797

9898
- Run `npm install`
9999
- Run `npm run build` (runs `next build && next export`)

0 commit comments

Comments
 (0)