Vue uses debugger to become popular?

Problem Description:

Using the debugger in Vue directly became popular,
and you have to add comments to use it (I have a bad temper (╯▔炒▔)╯):
insert image description here


solution:

Find the package.json file, then find the rules, fill in such a line of code backhand, and then install it to let it know what a black hand is! :

"rules": {
    
    
      "no-debugger": "off",
      "no-console": "off"
    }

Guess you like

Origin blog.csdn.net/Fan_1504251998/article/details/119852101