瀏覽代碼

添加execution代理

57862207 1 年之前
父節點
當前提交
3b696f5ddc
共有 1 個文件被更改,包括 5 次插入0 次删除
  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, //需要代理跨域