vue.config.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. let proxyObj = {}
  2. proxyObj['/'] = {
  3. //websocket
  4. ws: false,
  5. //目标地址
  6. target: 'http://116.62.158.92:8081',
  7. // target: 'https://admin.zfire.top/',
  8. // target: "https://reportinter.zfire.top",
  9. //发送请求头host会被设置target
  10. changeOrigin: true,
  11. //不重写请求地址
  12. pathRewrite: {
  13. '^/api': '/'
  14. }
  15. }
  16. module.exports = {
  17. publicPath: './',
  18. assetsDir: 'static',
  19. lintOnSave: false, //关闭eslint
  20. //修改或新增html-webpack-plugin的值,在index.html里面能读取htmlWebpackPlugin.options.title
  21. chainWebpack: config => {
  22. config.plugin('html').tap(args => {
  23. args[0].title = '嘉讯茂移动办公平台'
  24. return args
  25. })
  26. },
  27. // devServer: {
  28. // host: 'localhost',
  29. // port: 8080,
  30. // proxy: proxyObj,
  31. // compress: true,
  32. // disableHostCheck: true
  33. // },
  34. devServer: {
  35. host: 'localhost',
  36. port: 8080,
  37. proxy: {
  38. '/api': {
  39. ws: false,
  40. //目标地址
  41. target: 'http://116.62.158.92:8081',
  42. // target: 'https://admin.zfire.top/',
  43. // target: "https://reportinter.zfire.top",
  44. //发送请求头host会被设置target
  45. changeOrigin: true,
  46. pathRewrite: {
  47. '^/api': '/'
  48. }
  49. },
  50. '/services': {
  51. ws: false,
  52. //目标地址
  53. // target: 'http://116.62.158.92:8081',
  54. target: 'https://admin.zfire.top', //测试,
  55. // target: 'https://pgxtadm.greeapps.com',
  56. // target: "https://reportinter.zfire.top",
  57. //发送请求头host会被设置target
  58. changeOrigin: true
  59. // onProxyRes(proxyRes, req, res) {
  60. // //在控制台显示真实代理地址
  61. // const realUrl = new URL(req.url || '', 'https://admin.zfire.top')?.href || ''
  62. // proxyRes.headers['x-real-url'] = realUrl
  63. // }
  64. }
  65. },
  66. compress: true,
  67. disableHostCheck: true
  68. }
  69. }