mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commits update the platform-server test structure to add 2 applications in the Angular CLI workspace one based on ngmodules and another standalone. The same E2E suit is ran on both apps. PR Close #49927
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {BrowserModule, provideClientHydration} from '@angular/platform-browser';
|
|
|
|
import {AppRoutingModule} from './app-routing.module';
|
|
import {AppComponent} from './app.component';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [BrowserModule, AppRoutingModule],
|
|
providers: [provideClientHydration()],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|