16 lines
301 B
JavaScript
16 lines
301 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true
|
|
})
|
|
|
|
module.exports = {
|
|
chainWebpack: config => {
|
|
config
|
|
.plugin('html')
|
|
.tap(args => {
|
|
args[0].title = "Keyemail's Profile"
|
|
return args;
|
|
})
|
|
}
|
|
} |