2023-08-10 14:59:52 +08:00
|
|
|
|
|
|
|
// 本地访问域名
|
2023-08-22 18:14:17 +08:00
|
|
|
const testUrl = "http://glh.dev.scdxtc.cn"
|
2023-08-10 14:59:52 +08:00
|
|
|
//线上域名
|
|
|
|
const productUrl = ''
|
|
|
|
const config = {
|
|
|
|
baseUrl: process.env.NODE_ENV == 'production' ? productUrl : testUrl
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|