Vue Devtools not loading
See original GitHub issueDescribe the bug After the first initial run when the devtools are still being loaded, they’re not available anymore.
When running npm run electron:serve
I get this warning message:
(node:16668) ExtensionLoadWarning: Warnings loading extension at C:\Users\oasch\AppData\Roaming\sealas-desktop\extensions\nhdogjmejiglipccpnnnanhbledajbpd: Unrecognized manifest key 'browser_action'. Unrecognized manifest key 'update_url'. Permission 'contextMenus' is unknown or URL pattern is malformed. Cannot load extension with file or directory name _metadata. Filenames starting with "_" are reserved for use by the system.
Which is most likely coming from this line:
await installExtension(VUEJS_DEVTOOLS)
package.json:
"vue-cli-plugin-electron-builder": "^2.0.0-rc.4",
It seems possible to “fix” this by deleting the temporary build and forcing a rebuild.
Issue Analytics
- State:
- Created 3 years ago
- Comments:27 (7 by maintainers)
Top Results From Across the Web
VueJs dev tools panel not showing - Stack Overflow
Enter chrome://extensions in the address bar and click on Details for Vue.js devtools. Scroll down to "Allow in Incognito" and switch to On....
Read more >Vue.js is detected but the Vue Panel is not showing #1209
Go to the DevTools settings · Under Apperance, choose a different theme · The Vue Panel should be back now in DevTools ·...
Read more >Vue3 devtools : VueJS not detected - Get Help - Vue Forum
I installed vue devtools but it says VueJS not detected (in chrome). my app is working fine. how can a Vue instance not...
Read more >How To Debug Components, State, and Events with Vue.js ...
Vue.js Devtools is a browser extension for Chrome and Firefox and a ... By using this view, you can inspect your state for...
Read more >Vue.js DevTools Tutorial - Flavio Copes
As mentioned, the Vue DevTools can be activated by opening the Developer Tools in the browser and moving to the Vue panel. Another...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Chappie74 The await code is for
win.loadURL(process.env.WEBPACK_DEV_SERVER_URL)
, likely around line 32.Can those of you with the issue please try this: https://github.com/nklayman/vue-cli-plugin-electron-builder/issues/776#issuecomment-639099375 (adding
await
)? It seemed to work for everyone in that issue, and it seems like the same problem.