Waqas Ali
Waqas Ali

Reputation: 114

Angular 5 - Cannot find module '@angular/common/http'

Cannot find module '@angular/common/http'

I'm facing this issue after run this command.npm install angular-loader

Upvotes: 1

Views: 411

Answers (1)

student18
student18

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

Related Questions