keyemail-dev/vue.config.js

16 lines
301 B
JavaScript
Raw Normal View History

2023-12-26 08:19:05 +00:00
const { defineConfig } = require('@vue/cli-service')
2023-12-27 09:05:59 +00:00
2023-12-26 08:19:05 +00:00
module.exports = defineConfig({
transpileDependencies: true
})
2023-12-27 09:05:59 +00:00
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = "Keyemail's Profile"
return args;
})
}
}