I am trying to use the ngx-toastr. I installed ngx-toastr, imported to the app.module.ts, and added to style in angular.json. I got a complie error after that. The following is the error:
ERROR in multi ./src/styles.css ../node_modules/ngx-toastr/toastr.css Module not found: Error: Can't resolve 'C:\Users\hjishe07\Desktop\firebase\node_modules\ngx-toastr\toastr.css' in 'C:\Users\hjishe07\Desktop\firebase\angularfirebasecrud' i 「wdm」: Failed to compile.
There's probably a problem with css. As mentioned in the setup guide you should try with importing the css file to your angular.json file
"styles": [
"styles.scss",
"node_modules/ngx-toastr/toastr.css" // try adding '../' if you're using angular cli before 6
]