Skip to content

Commit

Permalink
fix: app public dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
ocombe committed Feb 5, 2024
1 parent b0a0d44 commit acbf3ad
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 @@ -258,7 +258,7 @@ export class AngularApp implements Application {
globPatterns: [outputPath],
}],
metadata: {
publicDir: appOptions.ssr ? join(outputPath, 'browser') : outputPath,
publicDir: join(outputPath, 'browser'),
ssrPublicDir: appOptions.ssr ? join(outputPath, 'server') : undefined
}
};
Expand Down

0 comments on commit acbf3ad

Please sign in to comment.