const map = {
|
"//localhost:7200/": "//wujie-micro.github.io/demo-vue2/",
|
"//localhost:90/": "//localhost:90/",
|
"//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;
|
}
|