Angular v6.x.x and higher (ccdab37)forRoot() on NgwWowModule has been removed as no longer necessaryBefore:
import {NgwWowModule} from 'ngx-wow';
@NgModule({
declarations: [AppComponent, ...],
imports: [NgwWowModule.forRoot()],
bootstrap: [AppComponent]
})
export class AppModule {
}After:
`ts
import {NgwWowModule} from 'ngx-wow';
@NgModule({ declarations: [AppComponent, ...], imports: [NgwWowModule], bootstrap: [AppComponent] }) export class AppModule { }
animate.css (e0ed09d)