1234567891011121314151617181920 |
- import {
- buildTip
- } from "./buildInfo.js";
- export let preUrl, payUrl, newPreUrl;
- export const projectCode = 'c3bedc35fd57462ea481579c0b11e37e';
- setProjectPath();
- function setProjectPath() {
- console.log('开始指定环境');
- switch (buildTip) {
- case "test":
- preUrl = 'https://test.evzhuangjia.com/zhuangjia/applet';
- newPreUrl = 'https://evzhuangjia.com/navinfo/applet-test';
- break;
- };
- console.log('指定环境成功');
- }
- module.exports = {
- preUrl: preUrl,
- }
|