14 lines
374 B
JavaScript
14 lines
374 B
JavaScript
const dev = {
|
|
NODE_ENV: 'production',
|
|
type: '测试版',
|
|
hostUrl: 'https://stg.lz.test.trydotec.com',
|
|
fileUrl: 'https://stg.lz.test.trydotec.com/8611',
|
|
}
|
|
const info = {
|
|
netHost: `${dev.hostUrl}/miniapp/`,
|
|
fileHost:`${dev.fileUrl}/notary/minio/preview/`,
|
|
weChatRedirectUri: 'https://portal.lz.test.trydotec.com/',
|
|
version: '2.0.0',
|
|
}
|
|
export default {...info}
|