adev/src/content/reference/errors/NG0302.md
Angular can't find a pipe with this name.
The pipe referenced in the template has not been named or declared properly.
To use the pipe:
imports array or, if the pipe sets standalone: false, add the NgModule to which the pipe belongs.Use the pipe name to trace where the pipe is declared and used.
To resolve this error:
NgModule, give it a unique name in the pipe's decorator and declared it in the NgModule.NgModule, add it to the imports field of the standalone component or the current NgModule.If you recently added an import or declaration, you may need to restart your server to see these changes.