Cannot determine the module for class Component in component.ts! Add Component to the NgModule to fi

Angular打包报错

ERROR in : Cannot determine the module for class XComponent in component.ts! Add XComponent to the NgModule to fix it.

报错原因及解决方案

某个组件没有放在NgModule组织上。也就是没有正确引入。
找到你页面的NgModule,也就是routes.moudule.ts文件。import导入XComponent文件位置,并且放在NgModle下。

你可能感兴趣的:(Angular,angular.js,javascript,前端)