Commit e25eede7935bdca682322f5cc04ebc660b07cf29
1 parent
d1d75b79
build(nuxt): 切换代理服务器地址
- 将开发代理地址从本地地址 (http://127.0.0.1:8002/shop)切换为线上地址 (http://47.89.254.121:8002/shop) - 同时更新 routeRules 中的代理配置
Showing
1 changed file
with
4 additions
and
4 deletions
nuxt.config.ts
... | ... | @@ -32,8 +32,8 @@ export default defineNuxtConfig({ |
32 | 32 | nitro: { |
33 | 33 | devProxy: { |
34 | 34 | "/shop": { |
35 | - //target: "http://47.89.254.121:8002/shop", // 线上代理地址 | |
36 | - target: "http://127.0.0.1:8002/shop", | |
35 | + target: "http://47.89.254.121:8002/shop", // 线上代理地址 | |
36 | + //target: "http://127.0.0.1:8002/shop", | |
37 | 37 | // target: process.env.BASE_URL || 'http://39.108.227.113:8002/shop', // 目标接口域名 |
38 | 38 | changeOrigin: true, // 表示是否跨域 |
39 | 39 | }, |
... | ... | @@ -41,8 +41,8 @@ export default defineNuxtConfig({ |
41 | 41 | // 该配置用于服务端请求转发 |
42 | 42 | routeRules: { |
43 | 43 | "/shop/**": { |
44 | - //proxy: "http://47.89.254.121:8002/shop/**", | |
45 | - proxy: "http://127.0.0.1:8002/shop/**", | |
44 | + proxy: "http://47.89.254.121:8002/shop/**", | |
45 | + //proxy: "http://127.0.0.1:8002/shop/**", | |
46 | 46 | // proxy: process.env.BASE_URL || 'http://39.108.227.113:8002/shop/**' |
47 | 47 | }, |
48 | 48 | }, | ... | ... |