ngx-wow icon indicating copy to clipboard operation
ngx-wow copied to clipboard

'NgwWowModule' does not appear to be an NgModule class

Open lamisusama opened this issue 7 months ago • 1 comments

I try to use ngx-wow in my angular 16 project but I got this error when I imported NgwWowModule in app.module.ts

'NgwWowModule' does not appear to be an NgModule class

This likely means that the library (ngx-wow) which declares NgwWowModule is not compatible with Angular Ivy. Check if a newer version of the library is available, and update if so. Also consider checking with the library's authors to see if the library is expected to be compatible with Ivy.

this is my app.module.ts


import { AppComponent } from './app.component'; import { NgwWowModule } from 'ngx-wow';

@NgModule({ declarations: [AppComponent], imports: [ ..., NgwWowModule, ], providers: [], bootstrap: [AppComponent], schemas: [], }) export class AppModule {}


lamisusama avatar Nov 29 '23 13:11 lamisusama