I have frontend app wrote in Angular on localhost:4200 and backend in C#, .NET Core on localhost:5001. I had problem with 404 errors and solution is below. It is resolving my two problems, one to gets data from my controllers and second to repair auth functionality. GET http://localhost:4200/_configuration/* 404 (Not Found)e.g.:GET http://localhost:4200/_configuration/crypto-web-app 404 (Not Found)Continue reading “Angular Auth 404 (Not Found)”
Tag Archives: localhost:5001
Terminating process that occupy the specific port
In a nutshell: This post is about kill the process that occupying port that we want to use. Sometimes when you developing app on your local machine you can encounter port blocked. In my cases, these were ports 4200 and 5001. For example after using ng start command for start Angular frontend application or dotnetContinue reading “Terminating process that occupy the specific port”