diff options
Diffstat (limited to 'examples/docs/src/pages')
-rw-r--r-- | examples/docs/src/pages/index.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/docs/src/pages/index.md b/examples/docs/src/pages/index.md index 025727263..93d75c113 100644 --- a/examples/docs/src/pages/index.md +++ b/examples/docs/src/pages/index.md @@ -29,7 +29,7 @@ npm init astro npm install # start the dev server and open your browser -npm start +npm run dev ``` ### 🚀 Build & Deployment @@ -39,7 +39,7 @@ The default Astro project has the following `scripts` in the `/package.json` fil ```json { "scripts": { - "start": "astro dev", + "dev": "astro dev", "build": "astro build" } } @@ -48,7 +48,7 @@ The default Astro project has the following `scripts` in the `/package.json` fil For local development, run: ``` -npm start +npm run dev ``` To build for production, run the following command: |