angular/integration/platform-server/projects/ngmodule/src/app/app.module.ts
Alan Agius 0c9e7d980e test: add integration test for defer with input on SSR with zones (#61040)
Add an integration test to verify defer block behavior with input handling during server-side rendering (SSR).

PR Close #61040
2025-04-30 12:37:01 -07:00

17 lines
474 B
TypeScript

import {NgModule} from '@angular/core';
import {
BrowserModule,
provideClientHydration,
withIncrementalHydration,
} from '@angular/platform-browser';
import {AppRoutingModule} from './app-routing.module';
import {AppComponent} from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, AppRoutingModule],
providers: [provideClientHydration(withIncrementalHydration())],
bootstrap: [AppComponent],
})
export class AppModule {}