diff options
author | 2021-07-21 23:09:44 +0900 | |
---|---|---|
committer | 2021-07-21 07:09:44 -0700 | |
commit | 5fcd466d95f9694a758239d254e3d81f4ed289fa (patch) | |
tree | c354d7607ff153c99c5f8dd3d7fa5f215267ed1f /examples/snowpack/src/pages/tutorials/getting-started.md | |
parent | 661a52f4dd4979d697aafec71f49620c1ec70f85 (diff) | |
download | astro-5fcd466d95f9694a758239d254e3d81f4ed289fa.tar.gz astro-5fcd466d95f9694a758239d254e3d81f4ed289fa.tar.zst astro-5fcd466d95f9694a758239d254e3d81f4ed289fa.zip |
replace `npm run start` with `npm start` (#791)
Diffstat (limited to 'examples/snowpack/src/pages/tutorials/getting-started.md')
-rw-r--r-- | examples/snowpack/src/pages/tutorials/getting-started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/snowpack/src/pages/tutorials/getting-started.md b/examples/snowpack/src/pages/tutorials/getting-started.md index 07687dffa..9fcb258b2 100644 --- a/examples/snowpack/src/pages/tutorials/getting-started.md +++ b/examples/snowpack/src/pages/tutorials/getting-started.md @@ -80,7 +80,7 @@ Add the Snowpack development server to `package.json` under as the `start` scrip Run the following on the command line to start the Snowpack development server ``` -npm run start +npm start ``` If all went well, Snowpack automatically opens your site in a new browser! |