How to turn off syntax checking in Vue

How to turn off syntax checking in Vue

First create a js file, you can’t change the name, it’s called vue.config.js
insert image description here
vue.config.js

module.exports={
    pages:{
        index:{
            //入口
            entry:'src/main.js'
        },
    },
    lintOnSave:false  //关闭语法检查
}

Guess you like

Origin blog.csdn.net/weixin_44747173/article/details/125258356