automated_uniapp/config/proxy.ts

14 lines
303 B
TypeScript
Raw Normal View History

2025-01-09 16:16:11 +08:00
export const proxy = {
"/dev/": {
target: "http://127.0.0.1:8001",
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/dev/, ""),
},
"/prod/": {
target: "https://cool-mall-dev.cool-js.cloud",
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/prod/, ""),
},
};