glhcp/pc/config/app.js

12 lines
290 B
JavaScript
Raw Normal View History

2023-08-10 06:59:52 +00:00
// 本地访问域名
2023-10-10 01:51:56 +00:00
// const testUrl = "https://www.gonglehui.com"
const testUrl = "https://glh.dev.scdxtc.cn"
2023-08-10 06:59:52 +00:00
//线上域名
2023-10-10 01:51:56 +00:00
const productUrl = 'https://glh.dev.scdxtc.cn'
2023-08-10 06:59:52 +00:00
const config = {
baseUrl: process.env.NODE_ENV == 'production' ? productUrl : testUrl
}
export default config