-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ts
42 lines (36 loc) · 904 Bytes
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export const config = {
SiteName: "MRCM SPORTS MEET",
APIURI: "https://sport-server.mrcm.lk",
Version: 2,
encrypt: false,
encryptKey: "34234ca3HU7hdfhasdaskdf%@jnbdfuck",
// APIURI: "http://localhost:8080",
};
export const images = {
Banner: "/assets/img/Home/Main/banner.png",
Logo: "/assets/logo/logo.png",
SubLogo: "/assets/img/Logo2.png",
ProfileBannner: "/assets/img/Dashboard/Profile/ProfileBannner.jpg",
loginBG: "/assets/img/Login/LogginBG.jpg",
};
export const icons = {};
interface Config {
SiteName: string;
APIURI: string;
Version: number;
encrypt: boolean;
}
interface Images {
Banner: string;
Logo: string;
SubLogo: string;
ProfileBannner: string;
loginBG: string;
}
export interface ConfigJS {
config: Config;
images: Images;
icons: Record<string, never>;
}
const configJS: ConfigJS = { config, images, icons };
export default configJS;