electron-devtools-installer
electron-devtools-installer copied to clipboard
Invalid header: Does not start with Cr24
I am unable to use the devtools. After building my application I receive the following in my CLI:
Vue Devtools failed to install: Error: Invalid header: Does not start with Cr24
After much research, it appears this error has to do with how the library downloads the extension from google?
I tried inserting the chrome extension id explicitly like so:
await installExtension("nhdogjmejiglipccpnnnanhbledajbpd");
but I still receive the same error
@trek-eric I'm having the same issue. But in this discussion issue 238 someone created a fork of this repo and resolved the problem.
I installed the mentioned repo and it worked just fine with vue 3!
Having the same issue, any way to fix this with current repo?
For people having this issue when using VUEJS3_DEVTOOLS
, use VUEJS_DEVTOOLS
instead. Apparently VUEJS3_DEVTOOLS
was a beta extension with Vue 3 support, but the main extension also supports Vue 3 now. See https://github.com/MarshallOfSound/electron-devtools-installer/pull/222