vue.config.js

  1. const vueConfig = {
  2. devServer: {
  3. // 后端服务端口
  4. port: 8000,
  5. // 公共请求头
  6. headers: { 'Access-Control-Allow-Origin': '*' },
  7. // 代理服务器配置
  8. proxy: {
  9. '/api': {
  10. target: 'http://172.17.88.5:28000/zentao',
  11. secure: false,
  12. ws: false,
  13. changeOrigin: true,
  14. pathRewrite: {
  15. '^/api': ''
  16. }
  17. }
  18. }
  19. },
  20. // 其它配置
  21. }