mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Issue number: internal --------- ## What is the current behavior? There are tests apps for Angular 16, 17 and 18 ## What is the new behavior? Adds a test app for Angular 19 ## Does this introduce a breaking change? - [ ] Yes - [x] No --------- Co-authored-by: Brandy Carney <6577830+brandyscarney@users.noreply.github.com>
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
import { enableProdMode } from '@angular/core';
|
|
|
|
import { environment } from './environments/environment';
|
|
|
|
import { AppServerModule } from './app/app.server.module';
|
|
|
|
if (environment.production) {
|
|
enableProdMode();
|
|
}
|
|
|
|
export { AppServerModule } from './app/app.server.module';
|
|
export { renderModule } from '@angular/platform-server';
|
|
|
|
// Add a default export
|
|
export default AppServerModule;
|