Critical dependency: require function is used in a way in which dependencies cannot be statically extracted

前端 未结 6 1000
迷失自我
迷失自我 2020-12-24 10:42

Has anyone faced below warning in \"ng serve\"?

WARNING in ./node_modules/@angular/compiler/src/util.js 10:24-31 Critical dependency: require functi

6条回答
  •  一个人的身影
    2020-12-24 11:05

    It happened to me from this import:

    import { Message } from '@angular/compiler/src/i18n/i18n_ast';
    

    I have a Message interface but autofill import feature defaulted to the one above.

提交回复
热议问题