vue.config.js 315 B

12345678910111213141516
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. devServer: {
  4. port: 9001
  5. },
  6. transpileDependencies: true,
  7. lintOnSave: false,
  8. chainWebpack: config => {
  9. config
  10. .plugin('html')
  11. .tap(args => {
  12. args[0].title = 'AICG-poc'
  13. return args
  14. })
  15. }
  16. })