fix: 修改标题文字,去除log,修改配置文件

This commit is contained in:
yangjianze
2022-12-14 15:22:24 +08:00
parent c27a4674eb
commit f5e5990a3b
9 changed files with 122 additions and 122 deletions
+3 -3
View File
@@ -12,12 +12,12 @@ module.exports = {
proxy: {
// 配置跨域
'/api': {
target: 'http://127.0.0.1:7060', // 服务器
target: 'http://10.94.1.164:7060', // 服务器
changeOrigin: true,
},
// 请求静态图片配置项
'/api/home/pic': {
target: 'http://127.0.0.1:7061', // 图片请求的nginx网址
target: 'http://10.94.1.164:7061', // 图片请求的nginx网址
changeOrigin: true
}
@@ -25,7 +25,7 @@ module.exports = {
},
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].title = '长安汽车'
args[0].title = '大众'
return args
})
},