You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2.Run`yarn install` in the repository root to install dependencies.
29
+
3.Run `yarn run build:watch`(compiles and watch the packages) and then `yarn run dev:vue3`(run the development shell) in two different terminals. Wait for the initial compilation in the first terminal to finish before running the second command.
30
+
4. A plain shell with a test app will be available at `http://localhost:8090`.
Copy file name to clipboardExpand all lines: packages/docs/src/guide/faq.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Frequently Asked Questions
2
2
3
-
## How to use the devtools in IE/Edge/Safari or any other browser?
3
+
## How to use the devtools in IE/Safari or any other browser?
4
4
5
5
In case your browser doesn't have our browser extension available, we made a standalone Vue devtools application.
6
6
[Get it now!](./installation.md#standalone)
@@ -17,7 +17,7 @@ Here are some troubleshooting steps to help you if you don't the Vue devtools in
17
17
- Check if you have the extension [installed](./installation.md).
18
18
- If you are on a live website, there is a good chance it's using a production build of Vue.
19
19
- Use a non-minified, non-`prod` version of Vue on CDN
20
-
- Set the `__VUE_PROD_DEVTOOLS__` environment variable for Vue 3 when using a bundler like Webpack ([more info](https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags)).
20
+
- Set the `__VUE_PROD_DEVTOOLS__` environment variable for Vue 3 when using a bundler like Webpack ([more info](https://github.com/vuejs/core/tree/main/packages/vue#bundler-build-feature-flags)).
21
21
- Try closing the devtools pane, refreshing the page and opening the devtools pane again.
22
22
- Try restarting the browser or the computer.
23
23
- If you have multiple versions of the Vue devtools installed, it's recommended to disable/remove the others.
Copy file name to clipboardExpand all lines: packages/docs/src/guide/installation.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -183,11 +183,11 @@ if (process.env.NODE_ENV === 'development') {
183
183
184
184
**port** - is an optional argument that tells your application on what port devtools middleware server is running. If you use proxy server, you might want to set it to `null` so the port won't be added to connection URL.
0 commit comments