diff options
author | 2022-09-07 12:08:58 +0200 | |
---|---|---|
committer | 2022-09-07 12:08:58 +0200 | |
commit | d693e365ca1b281b227b54485fd672e2107bec72 (patch) | |
tree | 4b8b4d541b25505fd38174523181c55111347cff /packages/integrations/vue | |
parent | 481e0d1d8ae313714cfbc14e82f6dd248232ee33 (diff) | |
download | astro-d693e365ca1b281b227b54485fd672e2107bec72.tar.gz astro-d693e365ca1b281b227b54485fd672e2107bec72.tar.zst astro-d693e365ca1b281b227b54485fd672e2107bec72.zip |
Integrations: Fix NPM instructions to use `npx astro add` again (#4653)
* Fix install instructions to use `npx astro` again
* Replace joyful hiccups with regular issues :)
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r-- | packages/integrations/vue/README.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/integrations/vue/README.md b/packages/integrations/vue/README.md index c5fa4a536..66b320629 100644 --- a/packages/integrations/vue/README.md +++ b/packages/integrations/vue/README.md @@ -16,14 +16,16 @@ To install `@astrojs/vue`, run the following from your project directory and fol ```sh # Using NPM -npm run astro add vue +npx astro add vue # Using Yarn yarn astro add vue # Using PNPM pnpm astro add vue ``` -If you run into any hiccups, [feel free to log an issue on our GitHub](https://github.com/withastro/astro/issues) and try the manual installation steps below. +Finally, in the terminal window running Astro, press `CTRL+C` and then restart the dev server. + +If you run into any issues, [feel free to report them to us on GitHub](https://github.com/withastro/astro/issues) and try the manual installation steps below. ### Install dependencies manually |