vue.config.js 246 B

1234567891011
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. chainWebpack: config => {
  5. config.plugin('html')
  6. .tap(args => {
  7. args[0].title = 'cte';
  8. return args;
  9. })
  10. },
  11. })