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