vue.config.js 704 B

12345678910111213141516171819202122232425
  1. module.exports = {
  2. devServer: {
  3. host: 'localhost',
  4. port: 8082,
  5. proxy: {
  6. '/metadata': {
  7. target: 'http://10.168.57.10:21000',
  8. changeOrigin: true,
  9. pathRewrite: {
  10. '^/metadata': ''
  11. },
  12. },
  13. // '/': {
  14. // // target: ' http://192.168.1.124:8081',
  15. // target: 'http://localhost:8082',
  16. // // target: 'http://192.168.1.103:8081',
  17. // changeOrigin: true,
  18. // ws: false,
  19. // pathRewrite: {
  20. // '^/': ''
  21. // },
  22. // },
  23. },
  24. }
  25. }