summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/pages/tutorials/svelte.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/svelte.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/svelte.md')
-rw-r--r--examples/snowpack/src/pages/tutorials/svelte.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/snowpack/src/pages/tutorials/svelte.md b/examples/snowpack/src/pages/tutorials/svelte.md
index c25f2bcdb..dd6ae73f0 100644
--- a/examples/snowpack/src/pages/tutorials/svelte.md
+++ b/examples/snowpack/src/pages/tutorials/svelte.md
@@ -39,7 +39,7 @@ Head to the new `svelte-snowpack` directory and start Snowpack with the followin
```bash
cd svelte-snowpack
-npm run start
+npm start
```
You should see your new website up and running!
@@ -75,7 +75,7 @@ module.exports = {
],
```
-Restart your Snowpack dev server to run it with the new configuration. Exit the process (ctrl + c in most Windows/Linux/macOS) and start it again with `npm run start`.
+Restart your Snowpack dev server to run it with the new configuration. Exit the process (ctrl + c in most Windows/Linux/macOS) and start it again with `npm start`.
> 💡 Tip: Restart the Snowpack development server when you make configuration changes (changes to the `snowpack.config.js`).