Error: Unexpected value 'undefined' imported by the module

前端 未结 30 1881
礼貌的吻别
礼貌的吻别 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:39

    I fix it by delete all index export file, include pipe, service. then all file import path is specific path. eg.

    import { AuthService } from './_common/services/auth.service';

    replace

    import { AuthService } from './_common/services';

    besides, don't export default class.

提交回复
热议问题