diff options
Diffstat (limited to 'docs/src/pages/quick-start.md')
-rw-r--r-- | docs/src/pages/quick-start.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/quick-start.md b/docs/src/pages/quick-start.md index 3685c6bbd..c59a12a49 100644 --- a/docs/src/pages/quick-start.md +++ b/docs/src/pages/quick-start.md @@ -17,7 +17,7 @@ npm init astro npm install # start developing! -npm start +npm run dev # when you're ready: build your static site to `dist/` npm run build @@ -30,7 +30,7 @@ If you wish to learn more about the range of methods to install and setup Astro From inside your project directory, enter the following command into your terminal: ```bash -npm start +npm run dev ``` Astro will now start serving your application on [http://localhost:3000](http://localhost:3000). Opening this URL in your browser, you should see the Astro's "Hello, World". |