Angular cli build prod: TypeError: Cannot read property 'kind' of undefined

后端 未结 5 1057
耶瑟儿~
耶瑟儿~ 2020-12-06 10:45

I try to build project with Angular CLI ng build --prod and I get this error:

ERROR in TypeError: Cannot read property \'kind\' of undefi

5条回答
  •  暖寄归人
    2020-12-06 11:20

    I ran in to this when I was using ng-recaptcha v6.0.2 with angular v6.2.2

    For me, the fix was to set buildOptimizer to false in angular.json

    "configurations": {
        "development": {
            "buildOptimizer": false
        }
    }
    

提交回复
热议问题