Jay
2025-03-13 4429f8d7a3b474be0f61275e94dcdff635379db2
1
2
3
4
5
6
7
8
9
10
const map = {
  "//localhost:7200/": "//wujie-micro.github.io/demo-vue2/",
  "//localhost:9000/": "//localhost:9000/",
  "//localhost:8000/": "//wujie-micro.github.io/demo-main-vue/",
};
 
export default function hostMap(host) {
  if (process.env.NODE_ENV === "production") return map[host];
  return host;
}