Ver Fonte

添加execution代理

57862207 há 1 ano atrás
pai
commit
3b696f5ddc
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      vue.config.js

+ 5 - 0
vue.config.js

@@ -24,6 +24,11 @@ module.exports = defineConfig({
         changeOrigin: true, //需要代理跨域
         rewrite: (path) => path.replace(/^\/mantis-test/, ''), //路径重写,把'/api'替换为''
       },
+      '/execution': {
+        target: 'http://139.196.158.57:8080', //需要代理的域名,目标域名
+        changeOrigin: true, //需要代理跨域
+        rewrite: (path) => path.replace(/^\/execution/, ''), //路径重写,把'/api'替换为''
+      },
       '/bmt-test': {
         target: 'http://139.196.158.57:8080', //需要代理的域名,目标域名
         changeOrigin: true, //需要代理跨域