Skip to content

Commit c130e71

Browse files
committed
chore: fix typo
1 parent 511488b commit c130e71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/guide/standalone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $ bun add -D @vue/devtools
5757
Once you installed the package globally, run:
5858

5959
```sh
60-
vue-devtools-next
60+
vue-devtools
6161
```
6262

6363
Then add this code to the `<head>` section of your application HTML file:
@@ -88,11 +88,11 @@ Or if you want to debug your device remotely:
8888
Once you installed the package as project dependency, run:
8989

9090
```sh
91-
./node_modules/.bin/vue-devtools-next
91+
./node_modules/.bin/vue-devtools
9292
```
9393

9494
:::tip
95-
You can also use the global `vue-devtools-next` to start the app, but you might want to check if the local version matches the global one in this scenario to avoid any incompatibilities.
95+
You can also use the global `vue-devtools` to start the app, but you might want to check if the local version matches the global one in this scenario to avoid any incompatibilities.
9696
:::
9797

9898
Then import it directly in your app:
@@ -123,7 +123,7 @@ if (process.env.NODE_ENV === 'development')
123123
You can change it by setting environment variable before running it:
124124

125125
```sh
126-
PORT=8000 vue-devtools-next
126+
PORT=8000 vue-devtools
127127
```
128128

129129
Then in your app you'll have to set either:
@@ -142,7 +142,7 @@ devtools.connect(/ host /, 8000)
142142

143143
For that you can use `ngrok` proxy. You can download it [here](https://ngrok.com/).
144144

145-
Once you start vue-devtools-next run:
145+
Once you start vue-devtools run:
146146

147147
```sh
148148
ngrok http 8098

0 commit comments

Comments
 (0)