潘志宝
6 天以前 adf924e3be3e5d5e7a1f12ae2a2684f7d856f003
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;
}