vue.config.js 196 B

123456789
  1. module.exports = {
  2. publicPath: './',
  3. chainWebpack: (config) => {
  4. config.plugin('html').tap((args) => {
  5. args[0].title = '统一用户认证管理系统'
  6. return args
  7. })
  8. }
  9. }