Skip to content

Commit

Permalink
fix(daffio): add default export to main.server.ts (#2728)
Browse files Browse the repository at this point in the history
this is apparently a requirement: angular/angular-cli#26922
  • Loading branch information
griest024 committed Jan 25, 2024
1 parent 9e8d223 commit 1e2174f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/daffio/src/main.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ if (environment.production) {
enableProdMode();
}

export { AppServerModule } from './app/app.server.module';
export {
AppServerModule,
AppServerModule as default,
} from './app/app.server.module';

0 comments on commit 1e2174f

Please sign in to comment.