NG0301: Export not found!

From Get docs
< Errors ListAngular/docs/11/errors/ng0301


NG0301: Export not found!


Description

Angular can’t find a directive with Template:PLACEHOLDER export name. The export name is specified in the exportAs property of the directive decorator. This is common when using FormsModule or Material modules in templates, and you’ve forgotten to import the corresponding modules.

This is the runtime equivalent of a common compiler error NG8003: No directive found with export.

Debugging the error

Use the export name to trace the templates or modules using this export.

Ensure that all dependencies are properly imported and declared in your NgModules. For example, if the export not found is ngForm, we need to import FormsModule and declare it in the list of imports in *.module.ts to resolve the error.

import { FormsModule } from '@angular/forms';

@NgModule({
  ...
  imports: [
    FormsModule,
    …

If you recently added an import, you may need to restart your server to see these changes.


© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/errors/NG0301