Error: Unexpected value 'undefined' imported by the module

前端 未结 30 1859
礼貌的吻别
礼貌的吻别 2020-12-01 03:51

I\'m getting this error after migrating to NgModule, the error doesn\'t help too much, any advice please?

Error: Error: Unexpected value \'undefined\' import         


        
30条回答
  •  春和景丽
    2020-12-01 04:33

    I had the same issue, I added the component in the index.ts of a=of the folder and did a export. Still the undefined error was popping. But the IDE pop our any red squiggly lines

    Then as suggested changed from

    import { SearchComponent } from './';
    

    to

    import { SearchComponent } from './search/search.component';
    

提交回复
热议问题