vue.config.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const path = require("path");
  2. module.exports = {
  3. publicPath: "./",
  4. devServer: {
  5. host: "0.0.0.0",
  6. port: "",
  7. disableHostCheck: true, // 关闭主机头检测
  8. proxy: {
  9. "/api": {
  10. target: "http://linyi.natapp1.cc", // 目标 API 地址 富勇电脑
  11. ws: true,
  12. changeOrigin: true, // 是否跨域
  13. pathRewrite: {
  14. "^/api": "/api"
  15. }
  16. },
  17. "/ymall": {
  18. // target: "http://mem.360lj.com:7001", // 医生注册Java接口
  19. target: "http://mem.360lj.com", // 医生注册Java接口
  20. ws: true,
  21. changeOrigin: true, // 是否跨域
  22. pathRewrite: {
  23. "^/ymall": "/ymall"
  24. }
  25. },
  26. "/note": {
  27. // target: "http://mem.360lj.com:7001", // 医生注册Java接口
  28. target: "http://mem.360lj.com", // 医生注册Java接口
  29. ws: true,
  30. changeOrigin: true, // 是否跨域
  31. pathRewrite: {
  32. "^/note": "/note"
  33. }
  34. }
  35. },
  36. overlay: {
  37. warnings: false,
  38. errors: false,
  39. lintOnSave: false
  40. }
  41. }
  42. };