add : icons module
This commit is contained in:
@@ -5,9 +5,9 @@ export function iconsConfig() {
|
|||||||
inject: [ConfigService],
|
inject: [ConfigService],
|
||||||
useFactory: async (configService: ConfigService) => {
|
useFactory: async (configService: ConfigService) => {
|
||||||
return {
|
return {
|
||||||
baseUrl: configService.getOrThrow<string>("DMENU_BACKEND_URL"),
|
baseUrl: configService.get<string>("DMENU_BACKEND_URL")??'https://dmenuplus-api.dev.danakcorp.com',
|
||||||
username: configService.getOrThrow<string>("DMENU_USERNAME"),
|
username: configService.get<string>("DMENU_USERNAME")??'danak@dsc.com',
|
||||||
password: configService.getOrThrow<string>("DMENU_PASSWORD"),
|
password: configService.get<string>("DMENU_PASSWORD")??'DsCdAnAk?@#AFG',
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user