Skip to content

Commit

Permalink
fix(app-builder): correctly resolve config file
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Feb 22, 2023
1 parent 58086aa commit b9b02fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app-builder/src/utils/resolveConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export async function resolveConfig(env: LiftoffEnv): Promise<PdkBuilderConfig>

const imported = await import(env.configPath);

return imported.default.default;
return imported.default;
}

0 comments on commit b9b02fd

Please sign in to comment.