Files
SCRM-WX/wxcontractbotfrontend/vue.config.js
T
2026-07-29 16:20:57 +08:00

17 lines
336 B
JavaScript

module.exports = {
devServer:{
port:'8560',
open:true
},
publicPath:'./',
outputDir:'dist',
assetsDir:'assets',
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title= 'Hashbot-Social CRM'
return args
})
}
}