unoffical wafrn mirror wafrn.net
atproto social-network activitypub
at development 11 lines 397 B view raw
1import { NgModule } from '@angular/core' 2import { ServerModule } from '@angular/platform-server' 3 4import { AppModule } from './app.module' 5import { AppComponent } from './app.component' 6import { NoopAnimationsModule } from '@angular/platform-browser/animations' 7@NgModule({ 8 imports: [AppModule, ServerModule, NoopAnimationsModule], 9 bootstrap: [AppComponent] 10}) 11export class AppServerModule {}