解决vue3.x debugger不能使用的问题

package.json->eslintConfig找到rules属性填写这段代码

"rules": {
            "no-debugger": "off",
            "no-console": "off",
            "generator-star-spacing": "off",
            "no-tabs": "off",
            "no-unused-vars": "off",
            "no-irregular-whitespace": "off"
        }

重新运行项目,ok了

猜你喜欢

转载自blog.csdn.net/weixin_39418338/article/details/120674322