Skip to content

Commit

Permalink
Merge pull request #11 from sevapp/artpani/tuner2
Browse files Browse the repository at this point in the history
test2
  • Loading branch information
artpani4 authored Aug 19, 2023
2 parents 4a5c0f5 + 6d1f6c7 commit 45b742f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/loaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ const fromConfigDir = (path: string) => {
}
console.log(path);
console.log(resolve(configDir, path));
const module = await import(`${resolve(configDir, path)}`);
const module = await import(
`file:///${resolve(configDir, path)}`
);
return module
.default as ITunerConfig;
};
Expand Down

0 comments on commit 45b742f

Please sign in to comment.