Vue关闭eslint语法检查

在项目结构目录找到 vue.config.js 在其中添加 lintOnSave: false


// vue.config.js
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  transpileDependencies: true,
  lintOnSave: false, // 关闭eslint语法检查
  publicPath: './',
  assetsDir: 'static',
})
发布日期:
分类:默认

作者:byboy

江湖没有他的传说!

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注