mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-15 01:48:00 +08:00
30 lines
616 B
TypeScript
30 lines
616 B
TypeScript
export const local = {
|
|
PORTAL_HOST: 'sso-sit.newpearl.com',
|
|
PORTAL_HOST_I: 'ssoi-sit.newpearl.com'
|
|
};
|
|
|
|
export const dev = {
|
|
PORTAL_HOST: 'sso-sit.newpearl.com',
|
|
PORTAL_HOST_I: 'ssoi-sit.newpearl.com'
|
|
};
|
|
|
|
export const sit = {
|
|
PORTAL_HOST: 'sso-sit.newpearl.com',
|
|
PORTAL_HOST_I: 'ssoi-sit.newpearl.com'
|
|
};
|
|
|
|
export const uat = {
|
|
PORTAL_HOST: 'sso-uat.newpearl.com',
|
|
PORTAL_HOST_I: 'ssoi-uat.newpearl.com'
|
|
};
|
|
|
|
export const pre = {
|
|
PORTAL_HOST: 'sso.newpearl.com',
|
|
PORTAL_HOST_I: 'ssoi.newpearl.com'
|
|
};
|
|
|
|
export const live = {
|
|
PORTAL_HOST: 'sso.newpearl.com',
|
|
PORTAL_HOST_I: 'ssoi.newpearl.com'
|
|
};
|