From d72225eef0e2b14230d4ca047c20c9075c986fad Mon Sep 17 00:00:00 2001 From: Sam Robbins Date: Thu, 10 Jun 2021 10:14:36 +0100 Subject: [PATCH] Add changing the hostname to the cli doc (#25971) ## Documentation / Examples - [x] Make sure the linting passes --- docs/api-reference/cli.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/api-reference/cli.md b/docs/api-reference/cli.md index f13204ad78..3dda5faf0c 100644 --- a/docs/api-reference/cli.md +++ b/docs/api-reference/cli.md @@ -74,6 +74,12 @@ The application will start at `http://localhost:3000` by default. The default po npx next dev -p 4000 ``` +Similarly, you can also set the hostname to be different from the default of `0.0.0.0`, this can be useful for making the application available for other devices on the network. The default hostname can be changed with `-H`, like so: + +```bash +npx next dev -H 192.168.1.2 +``` + ## Production `next start` starts the application in production mode. The application should be compiled with [`next build`](#build) first.