webpack 配置 自动打开页面及关闭eslint
const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig({
transpileDependencies: true,
// eslint
lintOnSave: false,
// 默认打开页面
devServer: {
host: 'localhost',
open: true,
},
});
版权声明:本文为weixin_67963221原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。