Home > front end >  How do I solve the problem of modules not found in angular application?
How do I solve the problem of modules not found in angular application?

Time:11-05

I have an angular application that has two libraries, however, when I try to build everything it ends up giving an error of modules not found:

Error: Module not found: Error: Can't resolve 'example-example/example' in 'C:\Users\Example\...'

This error appears for all dependencies, but my main file has all the necessary imports and declarations.

CodePudding user response:

Try (in Terminal):

npm install

CodePudding user response:

maybe you should run npm install or when it just one module just do npm install <module name> -save

  • Related