Skip to content

Commit

Permalink
fix: app bundler detection
Browse files Browse the repository at this point in the history
  • Loading branch information
ocombe committed Oct 13, 2023
1 parent 6794999 commit cb2ddfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angular/app-types/angular-app-type/angular.application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class AngularApp implements Application {
}

async getBundler(context: AppBuildContext): Promise<Bundler> {
if (typeof this.options.bundler !== 'string') {
if (this.options.bundler && typeof this.options.bundler !== 'string') {
return this.options.bundler as Bundler;
}

Expand Down

0 comments on commit cb2ddfa

Please sign in to comment.