Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
gxkl committed Apr 17, 2024
1 parent 8370b5d commit 4778abf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class App implements IBoot {
this.app.moduleConfigs[moduleName] = {
name: moduleName,
reference: absoluteRef,
config: ModuleConfigUtil.loadSync(absoluteRef.path, undefined),
config: ModuleConfigUtil.loadSync(absoluteRef.path),
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion standalone/standalone/src/Runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class Runner {
this.moduleConfigs[moduleName] = {
name: moduleName,
reference: absoluteRef,
config: ModuleConfigUtil.loadSync(absoluteRef.path, undefined),
config: ModuleConfigUtil.loadSync(absoluteRef.path),
};
}
for (const moduleConfig of Object.values(this.moduleConfigs)) {
Expand Down

0 comments on commit 4778abf

Please sign in to comment.