Skip to content

Commit cb2ddfa

Browse files
committed
fix: app bundler detection
1 parent 6794999 commit cb2ddfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

angular/app-types/angular-app-type/angular.application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class AngularApp implements Application {
152152
}
153153

154154
async getBundler(context: AppBuildContext): Promise<Bundler> {
155-
if (typeof this.options.bundler !== 'string') {
155+
if (this.options.bundler && typeof this.options.bundler !== 'string') {
156156
return this.options.bundler as Bundler;
157157
}
158158

0 commit comments

Comments
 (0)