vue.config.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. module.exports = {
  2. chainWebpack: config => {
  3. config
  4. .plugin('html')
  5. .tap(args => {
  6. args[0].title= '浙江六牛科技有限公司'
  7. return args
  8. })
  9. },
  10. // 假如想在同一个域名下配置多个项目,当前项目前缀是 /vue1
  11. // 基本路径,如果是生产(也就是run build) 那么生成的 index.html 文件,引入的js,css路径前缀会是 /vue1/
  12. publicPath: '/index' ,
  13. // 输出文件目录
  14. outputDir: 'index',
  15. devServer: {
  16. // 是否自动弹出浏览器页面
  17. open: true,
  18. // 设置为0.0.0.0则所有的地址均能访问
  19. host: '0.0.0.0',
  20. // 端口
  21. port: '8888',
  22. https: false,
  23. hotOnly: false,
  24. // 代理配置
  25. proxy: {
  26. '/proxyApi_vant': {
  27. // 后端接口地址
  28. target: 'http://localhost:8090',
  29. changeOrigin: true,
  30. // 重写路径,把 proxyApi 去掉
  31. pathRewrite: {
  32. '^/proxyApi_vant': ''
  33. }
  34. }
  35. },
  36. }
  37. }