Error: Unexpected value 'undefined' imported by the module

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

    For anyone facing this same error, my situation was that I have double commas in the imports section

    imports: [
          BrowserModule,
          HttpModule,
          FormsModule,
          RouterModule.forRoot(appRoutes), , // <-- this was the error
          // .... 
    ],
    

提交回复
热议问题