vue.config.js 778 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. publicPath:"./",
  3. lintOnSave: false,
  4. devServer: {
  5. host: 'localhost',
  6. port: 8082,
  7. proxy: {
  8. '/metadata': {
  9. target: 'http://10.168.57.10:21000',
  10. changeOrigin: true,
  11. pathRewrite: {
  12. '^/metadata': ''
  13. },
  14. },
  15. // 大数据平台
  16. '/bigdata': {
  17. // target: ' http://192.168.1.124:8081',
  18. target: ' http://182.92.79.148:8081',
  19. // target: 'http://192.168.1.103:8081',
  20. changeOrigin: true,
  21. ws: false,
  22. pathRewrite: {
  23. '^/bigdata': '/'
  24. },
  25. },
  26. },
  27. }
  28. }