module.exports = {
chainWebpack(config) {
debugger
console.log(config);
config
.when(process.env.NODE_ENV == 'development',
config => {
config.plugin('html')
.tap(args => {
debugger
args[0].title = '秀色可茶'
return args
})
}
)
}
}
vue.config.js配置为什么不能断点 也不能输出 怎样才能输出里面的内容?