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