vue3 : how to remove backend.js console message

1.2k views Asked by At

I am using Vue3 and each time I start the app or refresh the page or run any method , there is a console message from backend.js and the console is an object :

backend.js:2551 {uid: 0, vnode: {…}, type: {…}, parent: null, appContext: {…}, …}

it is very annoying, and I could not able to remove it.

backend.js console message on line no 2551.

enter image description here.

3

There are 3 answers

0
Daniel On BEST ANSWER

This is likely coming from vue devtools (since vue itself doesn't use backend.js)

You could try updating the plugin, which is still in beta, so changes may happen frequently.

0
bre On

Is as simple as right click on the request in the network tab and block the url

0
Connor Dooley On

You can right click on the message and select "hide messages from backend.js"