10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
/*
|
|
统一配置中心
|
|
*/
|
|
export class BaseConfig {
|
|
public static BaseUrl: string = 'https://localhost:7198'
|
|
public static BaseMediaUrl: string = 'https://localhost:7198/'
|
|
// public static BaseUrl:string="http://v3.pccsh.com";
|
|
// public static BaseMediaUrl:string="http://v3.pccsh.com";
|
|
}
|