Skip to content

Commit

Permalink
code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zoe-codez committed Oct 28, 2024
1 parent 829f032 commit ccdef8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/configuration.extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function Configuration({
const configDefinitions: KnownConfigs = new Map();
const configuration: PartialConfiguration = {};
const loaded = new Set<string>();
const loaders = new Map<DataTypes, ConfigLoader>([["file", configLoaderFile]]);
const loaders = new Map<DataTypes, ConfigLoader>([]);

// #MARK:
const proxyData = {} as Record<string, object>;
Expand Down Expand Up @@ -138,7 +138,7 @@ export function Configuration({
["env", "argv"],
);
mergeConfig(
await ConfigLoaderEnvironment({
await configLoaderFile({
application,
configs: configDefinitions,
internal,
Expand Down

0 comments on commit ccdef8d

Please sign in to comment.