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 3ca1692
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 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,9 @@ export class AngularApp implements Application {
globPatterns: [outputPath],
}],
metadata: {
publicDir: appOptions.ssr ? join(outputPath, 'browser') : outputPath,
outputPath,
nitroDir: join(outputPath, 'nitro'),
publicDir: join(outputPath, 'browser'),
ssrPublicDir: appOptions.ssr ? join(outputPath, 'server') : undefined
}
};
Expand Down

0 comments on commit 3ca1692

Please sign in to comment.