From be0c8e064d60c2065d468b09eb60e6cd7ede0de0 Mon Sep 17 00:00:00 2001 From: John Albritton Date: Mon, 11 Feb 2019 11:54:09 -0600 Subject: [PATCH] Adds localhost:8000 to gatsby develop command (#24912) Adds reference to localhost:8000 to gatsby develop command --- guide/english/gatsbyjs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/gatsbyjs/index.md b/guide/english/gatsbyjs/index.md index be40d49261..2e7b138d2f 100644 --- a/guide/english/gatsbyjs/index.md +++ b/guide/english/gatsbyjs/index.md @@ -28,7 +28,7 @@ Gatsby deploys the site on a static web host such as Amazon S3, Netlify, Github * Node: `npm install --global gatsby-cli` * Get started with the official Gatsby starter: `gatsby new gatsby-site https://github.com/gatsbyjs/gatsby-starter-default` * After that change to the newly created directory `cd gatsby-site` -* `gatsby develop` starts a hot-reloading development server. The site will reload when changes in `src/pages` will be saved. +* `gatsby develop` starts a hot-reloading development server at `localhost:8000`. The site will reload when changes in `src/pages` will be saved. * To generate the static HTML pages use `gatsby build` * `gatsby serve` will start a local server that will present your built site.