11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
|
|
||
|
// 本地访问域名
|
||
|
const testUrl = "https://likeshopb2b2c.yixiangonline.com"
|
||
|
//线上域名
|
||
|
const productUrl = ''
|
||
|
const config = {
|
||
|
baseUrl: process.env.NODE_ENV == 'production' ? productUrl : testUrl
|
||
|
}
|
||
|
|
||
|
export default config
|