Skip to content

Commit f85b064

Browse files
authored
The default port used by serve has changed (#11619)
1 parent 544befe commit f85b064

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docusaurus/docs/deployment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ sidebar_label: Deployment
88

99
## Static Server
1010

11-
For environments using [Node](https://nodejs.org/), the easiest way to handle this would be to install [serve](https://github.com/zeit/serve) and let it handle the rest:
11+
For environments using [Node](https://nodejs.org/), the easiest way to handle this would be to install [serve](https://github.com/vercel/serve) and let it handle the rest:
1212

1313
```sh
1414
npm install -g serve
1515
serve -s build
1616
```
1717

18-
The last command shown above will serve your static site on the port **5000**. Like many of [serve](https://github.com/zeit/serve)’s internal settings, the port can be adjusted using the `-l` or `--listen` flags:
18+
The last command shown above will serve your static site on the port **3000**. Like many of [serve](https://github.com/vercel/serve)’s internal settings, the port can be adjusted using the `-l` or `--listen` flags:
1919

2020
```sh
2121
serve -s build -l 4000

0 commit comments

Comments
 (0)