mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-21 00:30:49 +08:00
24 lines
352 B
TypeScript
24 lines
352 B
TypeScript
export const local = {
|
|
REMOTE: 'http://localhost:9527'
|
|
};
|
|
|
|
export const dev = {
|
|
REMOTE: 'http://localhost:9527'
|
|
};
|
|
|
|
export const sit = {
|
|
REMOTE: 'https://lcdp.vtj.pro'
|
|
};
|
|
|
|
export const uat = {
|
|
REMOTE: 'https://lcdp.vtj.pro'
|
|
};
|
|
|
|
export const pre = {
|
|
REMOTE: 'https://lcdp.vtj.pro'
|
|
};
|
|
|
|
export const live = {
|
|
REMOTE: 'https://lcdp.vtj.pro'
|
|
};
|