4.1.3
Safari 11.0.2 on OSX 10.13.2
On load, vue devtools crashes with a 404 on backend.js.map
no 404 on backend.js.map
404 on backend.js.map
/cc @michalsnik
On it 👀
@bombemedia Unfortunately I can't reproduce this issue. Can you please provide more informations, like:
Anything would be helpful, as for now I installed it both globally and as dev dependency and used both by adding <script> tag in HEAD and by directly including module, and I still don't get this error.
Sorry, I had a baby in the meanwhile!
Hi,
I have the same issue, and I am running the electron shell directly from source. The electron app shows the connection, but doesn't show any components or Vuex stores, so it's kinda useless.
I'm seeing that too. The interesting thing is, this _was_ working at some point. I was using it as a workaround for the devtools not supporting iframes. However, it seems to have stopped working.
cc @michalsnik
Hmm, the latest release was 5 months ago @gabaum10 So if it was working before, and is not working now, it might be a problem with the local environment, as nothing has changed here in the meanwhile.
Thank you @mstvincent I'll try to reproduce it again on my other macbook, hopefully I can get this error too.
I got the same issue here on mobile safari and the console prints "http://x.x.x.x:8098/backend.js.map" not found. It works well with desktop Chrome.
---Never mind, I forgot
in the page.
I just tried using dev tools with safari and this is an issue sitll.
I'm in the same boat.
PORT=3020 vue-devtools```
Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:3020/backend.js.map
````
Just wanted to say this was happening with me on mobile Safari connecting to the electron standalone version on macOS. I fixed it by putting semicolons on the end of the config values like so:
<script>
window.__VUE_DEVTOOLS_HOST__ = '192.168.0.185'; // default: localhost
window.__VUE_DEVTOOLS_PORT__ = '8098'; // default: 8098
</script>
<script src="http://192.168.0.185:8098"></script>
Most helpful comment
I just tried using dev tools with safari and this is an issue sitll.