summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/pages/tutorials/quick-start.md
diff options
context:
space:
mode:
authorGravatar Kyosuke <kyosuke@users.noreply.github.com> 2021-07-21 23:09:44 +0900
committerGravatar GitHub <noreply@github.com> 2021-07-21 07:09:44 -0700
commit5fcd466d95f9694a758239d254e3d81f4ed289fa (patch)
treec354d7607ff153c99c5f8dd3d7fa5f215267ed1f /examples/snowpack/src/pages/tutorials/quick-start.md
parent661a52f4dd4979d697aafec71f49620c1ec70f85 (diff)
downloadastro-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/quick-start.md')
-rw-r--r--examples/snowpack/src/pages/tutorials/quick-start.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/snowpack/src/pages/tutorials/quick-start.md b/examples/snowpack/src/pages/tutorials/quick-start.md
index a3960453f..db47b2968 100644
--- a/examples/snowpack/src/pages/tutorials/quick-start.md
+++ b/examples/snowpack/src/pages/tutorials/quick-start.md
@@ -29,7 +29,7 @@ For long-term development, the best way to use Snowpack is with a package.json s
```js
// Recommended: package.json scripts
-// npm run start (or: "yarn run ...", "pnpm run ...")
+// npm start (or: "yarn run ...", "pnpm run ...")
"scripts": {
"start": "snowpack dev",
"build": "snowpack build"