Reputation: 114
Cannot find module '@angular/common/http'
I'm facing this issue after run this command.npm install angular-loader
Upvotes: 1
Views: 411
Reputation: 538
you tried to install a module for AngularJS:
https://www.npmjs.com/package/angular-loader
please run following command to solve your issue:
npm uninstall angular-loader -S -D -O
Reference: https://docs.npmjs.com/cli/uninstall
Upvotes: 1