我正在尝试使用ngx-toastr。我安装了ngx-toastr,导入到app.module.ts,并在angular.json中添加了样式。之后我遇到了complie错误。以下是错误:
多个./src/styles.css ../node_modules/ngx-toastr/toastr.css中的错误 找不到模块:错误:无法解析“ C:\ Users \ hjishe07 \ Desktop \ firebase \ angularfirebasecrud”中的“ C:\ Users \ hjishe07 \ Desktop \ firebase \ node_modules \ ngx-toastr \ toastr.css” 我「wdm」:无法编译。
答案 0 :(得分:0)
css可能有问题。如setup guide中所述,您应该尝试将css文件导入到angular.json文件
"styles": [
"styles.scss",
"node_modules/ngx-toastr/toastr.css" // try adding '../' if you're using angular cli before 6
]
答案 1 :(得分:0)
使用以下命令安装烤面包机:
npm install ngx-toastr --save
npm install @angular/animations --save
@ angular / animations软件包是默认烤面包机的必需依赖项。
详细了解烤面包机here