You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const env = {
|
|
host: "https://saasdemo.byin.vip",
|
|
NETWORK_TIME_OUT: 15000,
|
|
version: "0.1",
|
|
store_id: 1,
|
|
mini_id: 0,
|
|
is_page: 1
|
|
};
|
|
// #ifdef H5
|
|
// 生产环境
|
|
if (process.env.NODE_ENV === 'production') {
|
|
// TODO
|
|
env.host = `${window.location.origin}`
|
|
}
|
|
// #endif
|
|
export default env;
|