12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
|
|
||
|
// 本地访问域名
|
||
|
// const testUrl = "https://glh.dev.scdxtc.cn"
|
||
|
const testUrl = "https://www.gonglehui.com"
|
||
|
//线上域名
|
||
|
const productUrl = 'https://www.gonglehui.com'
|
||
|
const config = {
|
||
|
baseUrl: process.env.NODE_ENV == 'production' ? productUrl : testUrl
|
||
|
}
|
||
|
|
||
|
export default config
|