Closed w-mazed closed 2 years ago
I've got this error : ERROR Error: Uncaught (in promise): Error: Type Ng2SearchPipeModule does not have 'ɵmod' property.
Even if I loaded the module correctelly (I guess):
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { Ng2SearchPipeModule } from 'ng2-search-filter'; import { HomePageRoutingModule } from './home-routing.module'; import { HomePage } from './home.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, HomePageRoutingModule, Ng2SearchPipeModule, ], providers: [ ], declarations: [ HomePage, ], }) export class HomePageModule {}
Any idea about this issue ?
Sorry I installed new packages and I guess that caused the error, after reopening the shell and serve the app, no errors appears. Sorry :)
I've got this error : ERROR Error: Uncaught (in promise): Error: Type Ng2SearchPipeModule does not have 'ɵmod' property.
Even if I loaded the module correctelly (I guess):
Any idea about this issue ?