diff options
author | 2021-08-18 22:07:34 -0700 | |
---|---|---|
committer | 2021-08-18 22:07:34 -0700 | |
commit | 472c0e5ac70a80aab49739df3edfbe4bb2c5bf2c (patch) | |
tree | 87115fa13e5b19bef70ca3caefcbaa820b791128 /examples/snowpack/src/pages/tutorials/svelte.md | |
parent | e66872125d6a5e5246aeb7a2f1d5784d5c5493b7 (diff) | |
download | astro-472c0e5ac70a80aab49739df3edfbe4bb2c5bf2c.tar.gz astro-472c0e5ac70a80aab49739df3edfbe4bb2c5bf2c.tar.zst astro-472c0e5ac70a80aab49739df3edfbe4bb2c5bf2c.zip |
walk-back examples/snowpack changes
Diffstat (limited to 'examples/snowpack/src/pages/tutorials/svelte.md')
-rw-r--r-- | examples/snowpack/src/pages/tutorials/svelte.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/snowpack/src/pages/tutorials/svelte.md b/examples/snowpack/src/pages/tutorials/svelte.md index 7659a4f3e..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 dev +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 dev`. +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`). @@ -192,7 +192,7 @@ The `mount` configuration changes where Snowpack scan for and builds files. Head </body> ``` -You'll need to restart Snowpack (stop the process in terminal and then run `npm run dev` again) for configuration file changes. It should look exactly as it did before, but now using your brand new project folder layout +You'll need to restart Snowpack (stop the process in terminal and then run `npm start` again) for configuration file changes. It should look exactly as it did before, but now using your brand new project folder layout ## Adding an animated Svelte Logo |