Commit ef8e094b authored by 李明环(东信)'s avatar 李明环(东信)

新增环境配置文件

parent 79fd8fda
let evn = {};
if (process.env.NODE_ENV === "development") {
// console.log('开发环境');// 发布到生产环境时,此处代码会被摇树移除掉。
evn.APP_BASE_API = "https://lygsh-api.wjzpgz.com/";
evn.APP_IMAGE_BASE_API = "https://lygsh-image.wjzpgz.com/";
} else {
// console.log('生产环境');
evn.APP_BASE_API = "https://lygsh-api.wjzpgz.com/";
evn.APP_IMAGE_BASE_API = "https://lygsh-image.wjzpgz.com/";
}
export default evn;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment