const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, chainWebpack: config =>{ config.plugin('html') .tap(args => { args[0].title = "重庆市消防远程监控"; return args; }) } })