我正在使用ngx-croppie模块的Angular 6上构建一个应用程序。一切正常,但是当我在做的时候


  ng build --prod


我收到以下错误:

Module not found: Error: Can't resolve 'croppie' in '/node_modules/ngx-croppie/esm5'


有什么线索可以解决吗? ngx-croppie版本是1.1.0。

谢谢。

最佳答案

解决了。

必须在package.json中的依赖项中包含此内容:

"croppie": "2.6.2"


然后执行:

npm install

07-27 14:50