From f32785c6326092a7c05aa477bf06928a9a1384ae Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Thu, 4 Nov 2021 17:15:18 +0100 Subject: [PATCH] The default port used by `serve` has changed (#11619) --- docusaurus/docs/deployment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docusaurus/docs/deployment.md b/docusaurus/docs/deployment.md index 478c0b9e653..85f4a7d09f0 100644 --- a/docusaurus/docs/deployment.md +++ b/docusaurus/docs/deployment.md @@ -8,14 +8,14 @@ sidebar_label: Deployment ## Static Server -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: +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: ```sh npm install -g serve serve -s build ``` -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: +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: ```sh serve -s build -l 4000