123456789101112131415161718192021 |
- const CONFIG = {
-
- development: {
- assetsPath: "/static",
-
-
- baseUrl: "https://agent-crm.luojigou.vip/crm-api/",
- hostUrl: "https://luojigou.vip/exhibition/",
- websocketUrl: "",
- weixinAppId: "",
- },
-
- production: {
- assetsPath: "/static",
- baseUrl: "https://agent-crm.luojigou.vip/crm-api/",
- hostUrl: "https://luojigou.vip/exhibition/",
- websocketUrl: "",
- weixinAppId: "",
- },
- };
- export default CONFIG[process.env.NODE_ENV];
|