Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tinygeeker committed Mar 28, 2023
1 parent cd6d65c commit 8499148
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@ const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
publicPath: "./",
transpileDependencies: true,
lintOnSave: false
lintOnSave: false,
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = '极客飞兔AI标签生成器'
return args
})
},
})

0 comments on commit 8499148

Please sign in to comment.