import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from "@angular/platform-browser/animations" import { NgModule } from '@angular/core'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { GalleryModule } from "./gallery/gallery.module"; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule.withServerTransition({ appId: 'angullary' }), BrowserAnimationsModule, AppRoutingModule, GalleryModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }