Vue项目运行时自动弹出浏览器运行的 vue.config.js配置文件
代码如下(cv即可)
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
// 本地端口
port: 8083,
// 是否自动打开
open: true,
// 是本地地址运行
host: 'localhost'
},
// 关闭eslint校验
lintOnSave: false
})