@@ -1,3 +1,9 @@
module.exports = {
- publicPath: './'
-}
+ publicPath: './',
+ chainWebpack: (config) => {
+ config.plugin('html').tap((args) => {
+ args[0].title = '统一用户认证管理系统'
+ return args
+ })
+ }
+}