From f36ba4c7e1ef3308e16f6072109f932cb3a38d4c Mon Sep 17 00:00:00 2001 From: Ann Catherine Jose Date: Tue, 19 Nov 2024 16:32:45 -0800 Subject: [PATCH] Fixed the default port in which the local dev server starts - 4321 instead of 3000 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27142cb465..cd2d4fec03 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ All commands are run from the root of the project, from a terminal: | Command | Action | | :------------------ | :------------------------------------------------- | | `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:3000` | +| `npm run dev` | Starts local dev server at `localhost:4321` | | `npm run build` | Build your production site to `./dist/` | | `npm run preview` | Preview your build locally, before deploying | | `npm run check` | Check your project for errors |