14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
const dev = {
|
|
NODE_ENV: 'production',
|
|
type: '生产版',
|
|
hostUrl: 'https://dev.trydotec.com:8416',
|
|
fileUrl: 'https://dev.trydotec.com:8416/8611',
|
|
}
|
|
const info = {
|
|
netHost: `${dev.hostUrl}/miniapp/`,
|
|
fileHost:`${dev.fileUrl}/notary/minio/preview/`,
|
|
weChatRedirectUri: 'https://dev.trydotec.com:8430/',
|
|
version: '2.0.0',
|
|
}
|
|
export default {...info}
|