vue.config.js 283 B

123456789101112
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. chainWebpack: config =>{
  5. config.plugin('html')
  6. .tap(args => {
  7. args[0].title = "重庆市消防远程监控";
  8. return args;
  9. })
  10. }
  11. })